Skip to content

Commit dbccad2

Browse files
committed
ci: use 2.1 version of circleci config
1 parent 7e271f8 commit dbccad2

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed

.circleci/config.yml

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,28 @@
1-
version: 2
2-
3-
jobs:
4-
build:
1+
executors:
2+
node8:
53
docker:
64
- image: circleci/node:8
7-
85
working_directory: ~/repo
96

7+
version: 2.1
8+
9+
jobs:
10+
build:
11+
executor: node8
1012
steps:
1113
- checkout
14+
1215
- restore_cache:
1316
keys:
14-
- v1-dependencies-{{ checksum "package.json" }}
15-
- v1-dependencies-
17+
- v1-dependencies-{{ checksum "package.json" }}
18+
- v1-dependencies-
1619

1720
- run: yarn
18-
- run: yarn test
1921

2022
- save_cache:
2123
paths:
2224
- node_modules
2325
- yarn.lock
2426
key: v1-dependencies-{{ checksum "package.json" }}
27+
28+
- run: yarn test

0 commit comments

Comments
 (0)