Skip to content

Commit f32048b

Browse files
committed
chore(ci): Update circle ci config
1 parent e5fe85a commit f32048b

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

.circleci/config.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
build_and_test:
77
docker:
88
# specify the version you desire here
9-
- image: circleci/node:9.11.1
9+
- image: circleci/node:10.15.2
1010

1111
working_directory: ~/repo
1212

@@ -16,36 +16,36 @@ jobs:
1616
# Download and cache dependencies
1717
- restore_cache:
1818
keys:
19-
- v1-dependencies-{{ checksum "package.json" }}
20-
# fallback to using the latest cache if no exact match is found
21-
- v1-dependencies-
19+
- v1-dependencies-{{ checksum "package.json" }}
20+
# fallback to using the latest cache if no exact match is found
21+
- v1-dependencies-
2222

23-
- run: npm install
23+
- run: yarn
2424

2525
- save_cache:
2626
paths:
2727
- node_modules
2828
key: v1-dependencies-{{ checksum "package.json" }}
2929

3030
# run tests!
31-
- run: npm run test
31+
- run: yarn test
3232

3333
semantic_release:
3434
docker:
3535
# specify the version you desire here
36-
- image: circleci/node:9.11.1
36+
- image: circleci/node:10.15.2
3737
working_directory: ~/repo
3838
steps:
3939
- checkout
4040

4141
# Download and cache dependencies
4242
- restore_cache:
4343
keys:
44-
- v1-dependencies-{{ checksum "package.json" }}
45-
# fallback to using the latest cache if no exact match is found
46-
- v1-dependencies-
44+
- v1-dependencies-{{ checksum "package.json" }}
45+
# fallback to using the latest cache if no exact match is found
46+
- v1-dependencies-
4747

48-
- run: npm install
48+
- run: yarn
4949

5050
- save_cache:
5151
paths:

0 commit comments

Comments
 (0)