forked from vuejs/devtools-v6
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.yml
More file actions
35 lines (28 loc) · 810 Bytes
/
config.yml
File metadata and controls
35 lines (28 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: vuejs/ci
working_directory: ~/repo
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v3-dependencies-{{ checksum "yarn.lock" }}
# fallback to using the latest cache if no exact match is found
- v3-dependencies-
- run: yarn install --pure-lockfile
- save_cache:
paths:
- node_modules
- ~/.cache/yarn
- ~/.cache/Cypress
key: v3-dependencies-{{ checksum "yarn.lock" }}
# run tests!
- run: yarn build && yarn test
- store_artifacts:
path: cypress/videos
- store_artifacts:
path: cypress/screenshots