-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitlab-ci.yml
65 lines (57 loc) · 1.86 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
image: node:16.17.1
stages:
- setup
- quality
#- test
.distributed:
interruptible: true
only:
- merge_requests
cache:
key:
files:
- frontend/package-lock.json
- backend/package-lock.json
paths:
- frontend/node_modules/
- backend/node_modules/
policy: pull
########################################################################################################################
# SETUP
########################################################################################################################
setup:
stage: setup
extends: .distributed
cache:
policy: pull-push
script:
- echo "Check versions"
- node --version
- npm --version
- echo "Server setup"
- cd backend && npm ci && cd ..
- echo "Client setup"
- cd frontend && npm ci && cd ..
- echo "Install successfully!"
########################################################################################################################
# QUALITY STAGE
########################################################################################################################
format-check:
stage: quality
extends: .distributed
script:
- echo "Start format check"
- cd frontend && npx prettier --check "src/**/*.(js|jsx|ts|tsx|json)" && cd ..
- cd backend && npx prettier --check "src/**/*.(js|ts|json)" && cd ..
- echo "Format check successfully!"
lint:
stage: quality
extends: .distributed
script:
- echo "Start lint"
- cd frontend && npx eslint "src/**" && cd ..
- cd backend && npx eslint "src/**" && cd ..
- echo "Lint successfully!"
#########################################################################################################################
# TEST
#########################################################################################################################