We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e029d27 commit 76b2207Copy full SHA for 76b2207
circle.yml
@@ -1,7 +1,26 @@
1
-machine:
2
- node:
3
- # need Node 8 for latest semantic release
4
- version: 8
5
-test:
6
- override:
7
- - npm run semantic-release || true
+version: 2
+
+workflows:
+ version: 2
+ tests:
+ jobs:
+ - test
8
9
+jobs:
10
+ test:
11
+ docker:
12
+ - image: circleci/node:8
13
+ steps:
14
+ - checkout
15
+ - run:
16
+ name: Install dependencies
17
+ command: npm install
18
19
+ name: Lint code
20
+ command: npm run lint
21
22
+ name: Run tests
23
+ command: npm test
24
25
+ name: Semantic release
26
+ command: npm run semantic-release || true
0 commit comments