forked from Concordium/concordium-desktop-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitlab-ci.yml
73 lines (67 loc) · 1.44 KB
/
.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
default:
image: 192549843005.dkr.ecr.eu-west-1.amazonaws.com/concordium/desktop-wallet-ci:latest
stages:
- dependencies
- build
- test
.pre-loader:
variables:
GIT_SUBMODULE_STRATEGY: normal
only:
- merge_requests
install-dependencies:
extends: .pre-loader
stage: dependencies
cache:
key: ${CI_COMMIT_REF_SLUG}
paths:
- node_modules/
- app/node_modules/
- dll/
- pkg/
- target/
script:
- yarn
build-job:
extends: .pre-loader
stage: build
cache:
key: ${CI_COMMIT_REF_SLUG}
paths:
- node_modules/
- app/node_modules/
- app/proto/
- app/main.prod.js
- app/dist/
- pkg/
- target/
script:
- yarn build-proto
- yarn build
lint-job:
extends: .pre-loader
stage: test
cache:
key: ${CI_COMMIT_REF_SLUG}
paths:
- node_modules/
- app/node_modules/
- app/proto/
- dll/
policy: pull
script:
- yarn lint --max-warnings 0
test-job:
extends: .pre-loader
stage: test
cache:
key: ${CI_COMMIT_REF_SLUG}
paths:
- node_modules/
- app/node_modules/
- dll/
- app/main.prod.js
- app/dist/
policy: pull
script:
- yarn test