We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8bd1ddd commit 2f8bac2Copy full SHA for 2f8bac2
.circleci/config.yml
@@ -0,0 +1,33 @@
1
+step-restore-cache: &step-restore-cache
2
+ restore_cache:
3
+ keys:
4
+ - v1-dependencies-{{ arch }}-{{ checksum "yarn.lock" }}
5
+ - v1-dependencies-{{ arch }}
6
+
7
+steps-test: &steps-test
8
+ steps:
9
+ - checkout
10
+ - *step-restore-cache
11
+ - run: yarn
12
+ - save_cache:
13
+ paths:
14
+ - node_modules
15
+ key: v1-dependencies-{{ arch }}-{{ checksum "yarn.lock" }}
16
+ - run: yarn test
17
18
+version: 2.1
19
+orbs:
20
+ win: circleci/[email protected]
21
+jobs:
22
+ test-linux-14:
23
+ docker:
24
+ - image: circleci/node:14
25
+ <<: *steps-test
26
27
+workflows:
28
+ version: 2
29
+ test_and_release:
30
+ jobs:
31
+ - test-linux-14
32
33
0 commit comments