Skip to content

Commit 1a5c084

Browse files
authored
Merge pull request #221 from vuejs/deps/upgrade-circle-ci-node-version
deps: updating circleci to run on node 10
2 parents 06010a8 + 72ffd55 commit 1a5c084

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.circleci/config.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: 2
22
jobs:
33
build:
44
docker:
5-
- image: circleci/node:8.10
5+
- image: circleci/node:10.16.3
66

77
working_directory: ~/repo
88

@@ -12,16 +12,16 @@ jobs:
1212
# Download and cache dependencies
1313
- restore_cache:
1414
keys:
15-
- node-8-dependencies-{{ checksum "package.json" }}
15+
- node-10-dependencies-{{ checksum "package.json" }}
1616
# fallback to using the latest cache if no exact match is found
17-
- node-8-dependencies-
17+
- node-10-dependencies-
1818

1919
- run: yarn install
2020

2121
- save_cache:
2222
paths:
2323
- node_modules
24-
key: node-8-dependencies-{{ checksum "package.json" }}
24+
key: node-10-dependencies-{{ checksum "package.json" }}
2525

2626
# run tests!
2727
- run: npm run test

0 commit comments

Comments
 (0)