-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitlab-ci.yml
67 lines (59 loc) · 1.21 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
image: mirzadipradhana/node:14.16.0-alpine
include:
- project: 'wartech/ci-template'
ref: master
file:
- 'common/verify-award-emoji/job-verify-thumbs.yaml'
.cache: &global_cache
cache:
key:
files:
- yarn.lock
paths:
- node_modules/
- .npm/
before_script:
- which yarn
- echo registry=https://gitlab.warungpintar.co/api/v4/projects/${CI_PROJECT_ID}/packages/npm/ >> ~/.npmrc
- echo //gitlab.warungpintar.co/api/v4/projects/${CI_PROJECT_ID}/packages/npm/:_authToken=${NPM_TOKEN} >> ~/.npmrc
stages:
- pre-test
- test
- release
verify-thumbs-up:
extends: .verify-thumbs
stage: pre-test
build-test:
stage: test
<<: *global_cache
script:
- yarn --non-interactive --non-progress
- yarn test:type
- yarn build
only:
- merge_requests
- master
tags:
- gke-node
unit-test:
stage: test
<<: *global_cache
script:
- yarn --non-interactive --non-progress
- yarn test:unit
only:
- merge_requests
- master
tags:
- gke-node
release:
stage: release
<<: *global_cache
script:
- yarn --non-interactive --non-progress
- yarn build
- yarn semantic-release
only:
- master
tags:
- gke-node