forked from sverweij/dependency-cruiser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
49 lines (45 loc) · 823 Bytes
/
.gitlab-ci.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
39
40
41
42
43
44
45
46
47
48
49
cache:
key: "$CI_JOB_NAME"
untracked: true
paths:
- node_modules
test_async_node_13:
image: node:13
script:
- npm install
- npm run lint
- npm run depcruise
# - npm run test:integration # yarn(1) pnp doesn't work on node 13 yet
- npm run test:cover
except:
- tags
test_async_node_12:
image: node:12
script:
- npm install
- npm run test:integration
- npm run test:cover
except:
- tags
test_async_node_10:
image: node:10
script:
- npm install
- npm run test:integration
- npm run test:cover
except:
- tags
test_async_node_8:
image: node:8
script:
- npm install
- npm run test:integration
- npm run test:cover
except:
- tags
# publish:
# image: node:latest
# script:
# - echo 'npm publish'
# only:
# - tags