We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a54ed29 commit 5f4d3e5Copy full SHA for 5f4d3e5
1 file changed
.circleci/config.yml
@@ -2,26 +2,13 @@ version: 2.1
2
3
jobs:
4
test:
5
- docker:
6
- - image: circleci/node:12.9.1-browsers
7
-
8
- working_directory: ~/repo
+ node:
+ version: 12.0.0
9
steps:
10
- checkout
11
- - restore_cache:
12
- keys:
13
- - v1-dependencies-{{checksum "package.json"}}
14
- - v1-dependencies-
15
- run:
16
name: install packages
17
command: npm install
18
19
- - save_cache:
20
- key: v1-dependencies-{{checksum "package.json"}}
21
- paths:
22
- - node_modules
23
- - ~/.npm
24
- - ~/.cache
25
26
name: Run lint
27
command: npm run lint
0 commit comments