forked from vueform/multiselect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yml
38 lines (28 loc) · 829 Bytes
/
config.yml
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
36
37
38
version: 2.1
orbs:
codecov: codecov/[email protected]
jobs:
build:
docker:
- image: cimg/node:15.4.0
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v4-dependencies-{{ checksum "package.json" }}
# fallback to using the latest cache if no exact match is found
- v4-dependencies-
- run: npm install --legacy-peer-deps
- save_cache:
paths:
- node_modules
key: v4-dependencies-{{ checksum "package.json" }}
- run: npm run test:vue3
- codecov/upload:
file: './coverage/coverage-final.json'
flags: 'vue3'
- run: npm run test:vue2
- codecov/upload:
file: './coverage/coverage-final.json'
flags: 'vue2'