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 5e2708c commit 9585939Copy full SHA for 9585939
circle.yml
@@ -1,19 +1,24 @@
1
-general:
2
- branches:
3
- ignore:
4
- - gh-pages
5
-machine:
6
- node:
7
- version: 5.7.0
8
-dependencies:
9
- pre:
10
- - npm i -g npm
11
- - npm i -g codecov
12
- - npm i js-data@rc
13
-test:
14
- post:
15
- - cat ./coverage/lcov.info | codecov
16
17
- artifacts:
18
- - "dist"
19
- - "fetch/dist"
+version: 2
+jobs:
+ test:
+ docker:
+ - image: circleci/node:8
+ steps:
+ - checkout
+ - run: npm install
+ - run: npm i codecov js-data@3
+ - run:
+ name: Test
+ command: npm test
+ name: Generate code coverage
+ command: cat ./coverage/lcov.info | codecov
+ - store_artifacts:
+ path: dist
+ destination: fetch/dist
+
20
+workflows:
21
+ version: 2
22
+ build_and_test:
23
+ jobs:
24
+ - test
0 commit comments