-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitlab-ci.yml
126 lines (116 loc) · 2.17 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
# Copyright (c) 2020 Gonzalo Müller Bravo
image: registry.gitlab.com/gmullerb/basecode-react-ts/debian-node-chromium-xvfb:9.12-14.2.0-73.0-1.19.2
cache:
key: "${CI_COMMIT_SHA}"
untracked: true
paths:
- node_modules/
stages:
- inception
- assess
- transpile
- test
- assemble
create-cache:
stage: inception
script:
- npm install
cache:
key: "${CI_COMMIT_SHA}"
policy: push
untracked: true
paths:
- node_modules/
assess-common:
stage: assess
script:
- npm run lint.any
- npm run lint.config
cache:
key: "${CI_COMMIT_SHA}"
policy: pull
untracked: true
paths:
- node_modules/
assess-code:
stage: assess
script:
- npm run lint.main
- npm run lint.flow
- npm run lint.ts
cache:
key: "${CI_COMMIT_SHA}"
policy: pull
untracked: true
paths:
- node_modules/
transpile:
stage: transpile
script:
- npm run transpile.flow
- npm run transpile.ts
cache:
key: "${CI_COMMIT_SHA}"
policy: pull
untracked: true
paths:
- node_modules/
tests-typings:
stage: test
script:
- npm run test.flow
- npm run test.ts
cache:
key: "${CI_COMMIT_SHA}"
policy: pull
untracked: true
paths:
- node_modules/
tests:
stage: test
script:
- export CHROME_BIN='chromium'
- npm run lint.test
- npm test
cache:
key: "${CI_COMMIT_SHA}"
policy: pull
untracked: true
paths:
- node_modules/
artifacts:
when: always
reports:
junit:
- build/reports/tests/tests_report.xml
paths:
- build/reports/coverage/lcov-report/
- build/reports/tests/
pack:
stage: assemble
script:
- mkdir -p build
- cd build
- npm pack ../
cache:
key: "${CI_COMMIT_SHA}"
policy: pull
untracked: true
paths:
- node_modules/
pages:
stage: assemble
dependencies:
- tests
script:
- mkdir -p to_public
- touch to_public/index.html
- mv build/reports/coverage/lcov-report/ to_public
- mv build/reports/tests/ to_public
- mv to_public/lcov-report to_public/coverage
- mv to_public public
artifacts:
paths:
- public
only:
- master