-
Notifications
You must be signed in to change notification settings - Fork 11
/
.gitlab-ci.yml
46 lines (43 loc) · 944 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
node_16:
image: node:16-slim
stage: build
before_script:
- node --version
- npm --version
script:
- cd ./export-server
- npm install
node_18:
image: node:18-slim
stage: build
before_script:
- node --version
- npm --version
script:
- apt-get update && apt-get install -y procps
- cd ./export-server
- npm install
- ./test.sh
node_20:
image: node:20-slim
stage: build
before_script:
- node --version
- npm --version
script:
- apt-get update && apt-get install -y procps
- cd ./export-server
- npm install
- ./test.sh
node_22:
image: node:22-slim
stage: build
before_script:
- node --version
- npm --version
script:
- apt-get update && apt-get install -y procps
- apt-get install -y build-essential libcairo2-dev libpango1.0-dev libjpeg-dev libgif-dev librsvg2-dev python3
- cd ./export-server
- npm install
- ./test.sh