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.
2 parents 7ff15db + b26b09b commit 16ebbe1Copy full SHA for 16ebbe1
.circleci/config.yml
@@ -0,0 +1,22 @@
1
+version: 2
2
+
3
+jobs:
4
+ build:
5
+ docker:
6
+ - image: circleci/node:10
7
+ steps:
8
+ - checkout
9
+ - run: npm ci
10
+ - run:
11
+ name: Unit Tests
12
+ command: |
13
+ mkdir junit
14
+ npm run --silent test > junit/tests.xml
15
+ when: always
16
+ - store_test_results:
17
+ path: junit
18
+workflows:
19
+ version: 2
20
+ build_and_test:
21
+ jobs:
22
+ - build
circle.yml
0 commit comments