We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5663660 commit 0c15e9aCopy full SHA for 0c15e9a
.circleci/config.yml
@@ -0,0 +1,30 @@
1
+version: 2
2
+jobs:
3
+ test-node:
4
+ docker:
5
+ - image: circleci/node:6.14-stretch
6
+ steps:
7
+ - checkout
8
+ - run: "yarn install"
9
+ - run: "yarn lint:ci"
10
+ - run: "yarn build"
11
+ - run: "yarn test:node -- --maxWorkers=4"
12
+ test-web:
13
14
15
16
17
18
+ # For some reason phantomjs-prebuild is failing w/yarn, but npm installing works
19
+ - run: "npm install phantomjs-prebuilt"
20
+ # Switch to 7 and lint
21
+ - run: "yarn test:web -- --maxWorkers=4"
22
+ - run: "yarn build:web -- --maxWorkers=4"
23
+
24
25
+workflows:
26
+ version: 2
27
+ build_and_test:
28
+ jobs:
29
+ - test-node
30
+ - test-web
circle.yml
0 commit comments