Skip to content

Commit 1a53c3f

Browse files
committed
ci(circle): run tests on node 10
1 parent d3e04a2 commit 1a53c3f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.circleci/config.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,25 @@ jobs:
88
setup:
99
working_directory: ~/@thisissoon/angular-image-loader
1010
docker:
11-
- image: circleci/node:8-browsers
11+
- image: circleci/node:10-browsers
1212
steps:
1313
- checkout
1414
- restore_cache:
15-
key: ~/@thisissoon/angular-image-loader-{{ .Branch }}-{{ checksum "package.json" }}
15+
key: ~/angular-image-loader-{{ .Branch }}-{{ checksum "package.json" }}
1616
- run: yarn --silent
1717
- save_cache:
18-
key: ~/@thisissoon/angular-image-loader-{{ .Branch }}-{{ checksum "package.json" }}
18+
key: ~/angular-image-loader-{{ .Branch }}-{{ checksum "package.json" }}
1919
paths:
2020
- 'node_modules'
2121

2222
test:
2323
working_directory: ~/@thisissoon/angular-image-loader
2424
docker:
25-
- image: circleci/node:8-browsers
25+
- image: circleci/node:10-browsers
2626
steps:
2727
- checkout
2828
- restore_cache:
29-
key: ~/@thisissoon/angular-image-loader-{{ .Branch }}-{{ checksum "package.json" }}
29+
key: ~/angular-image-loader-{{ .Branch }}-{{ checksum "package.json" }}
3030
- run: yarn lint
3131
- run: yarn test --configuration ci
3232
- run: yarn e2e

0 commit comments

Comments
 (0)