Browse Source

Add circleci helloworld

pull/1/merge
Mathieu DEGAND 6 years ago
parent
commit
f6ae528d1a
  1. 9
      .circleci/config.yml

9
.circleci/config.yml

@ -0,0 +1,9 @@
version: 2.1
job-name:
docker:
- image: circleci/node:12
steps:
- checkout
- run:
name: Echo Hello World
command: echo hello World
Loading…
Cancel
Save