We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f5b98ef + e1b1be2 commit b383d61Copy full SHA for b383d61
.circleci/config.yml
@@ -7,25 +7,23 @@ jobs:
7
build:
8
docker:
9
# specify the version you desire here
10
- - image: circleci/node:8.11-stretch-browsers
+ - image: circleci/node:12.0.0
11
steps:
12
- checkout
13
# Download and cache dependencies
14
- restore_cache:
15
key: v1-dependencies-{{ checksum "package.json" }}
16
17
- - run:
18
- command: 'npm install'
+ - run:
+ command: "npm install"
19
name: install npm packages
20
21
- save_cache:
22
paths:
23
- node_modules
24
25
-
+
26
# run tests!
27
28
- command: 'npm test'
+ command: "npm test"
29
name: run tests
30
31
0 commit comments