Skip to content

Commit ed9f31d

Browse files
committed
tests: still trying to get cypress working
1 parent 78b9d0f commit ed9f31d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
build:
88
docker:
99
# specify the version you desire here
10-
- image: circleci/node:8.11
10+
- image: cypress/base:8
1111

1212
# Specify service dependencies here if necessary
1313
# CircleCI maintains a library of pre-built images
@@ -22,16 +22,16 @@ jobs:
2222
# Download and cache dependencies
2323
- restore_cache:
2424
keys:
25-
- v1-dependencies-{{ checksum "package.json" }}
25+
- v1-dependencies-{{.Branch}}-{{ checksum "package.json" }}
26+
- v1-dependencies-{{.Branch}}
2627
# fallback to using the latest cache if no exact match is found
2728
- v1-dependencies-
2829

2930
- run: yarn install
3031

3132
- save_cache:
3233
paths:
33-
- node_modules
34-
- /home/circleci/.cache/Cypress
34+
- ~/cache
3535
key: v1-dependencies-{{ checksum "package.json" }}
3636

3737
# run tests!

0 commit comments

Comments
 (0)