Skip to content
This repository was archived by the owner on Oct 1, 2020. It is now read-only.

Commit 82ff94b

Browse files
committed
update circle to use orb and node 12
1 parent ba87acf commit 82ff94b

File tree

1 file changed

+6
-16
lines changed

1 file changed

+6
-16
lines changed

circle.yml

Lines changed: 6 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,19 @@
1-
version: 2
1+
version: 2.1
22

3-
workflows:
4-
version: 2
5-
tests:
6-
jobs:
7-
- test
3+
orbs:
4+
node: circleci/node@1.1
85

96
jobs:
107
test:
11-
docker:
12-
- image: cypress/base:8
8+
executor:
9+
name: node/default
10+
tag: '12'
1311

1412
steps:
1513
- checkout
16-
17-
- restore_cache:
18-
keys:
19-
- cache-{{ arch }}-{{ .Branch }}-{{ checksum "package.json" }}
2014
- run:
2115
name: Yarn install
2216
command: yarn install --frozen-lockfile
23-
- save_cache:
24-
key: cache-{{ arch }}-{{ .Branch }}-{{ checksum "package.json" }}
25-
paths:
26-
- ~/.cache
2717
- run:
2818
name: Lint code
2919
command: npm run lint

0 commit comments

Comments
 (0)