]> git.r.bdr.sh - rbdr/cologne/blame - .gitlab-ci.yml
Run lint and test on merge requests
[rbdr/cologne] / .gitlab-ci.yml
CommitLineData
9fabdd32
RBR
1.only-default: &only-default
2 only:
3 - branches
4 - merge_requests
5 - tags
6 - refs
7
69d55272
RBR
8image: node:14
9
7ce5b3cb
RBR
10variables:
11 SONAR_USER_HOME: "${CI_PROJECT_DIR}/.sonar" # Defines the location of the analysis task cache
12
69d55272
RBR
13stages:
14 - lint
15 - test
7ce5b3cb 16 - quality
69d55272
RBR
17
18before_script:
19 - npm install
20
21lint:
9fabdd32 22 <<: *only-default
69d55272
RBR
23 stage: lint
24 script:
25 - npm run lint
26
27test:
9fabdd32 28 <<: *only-default
69d55272
RBR
29 stage: test
30 script:
31 - npm test
7ce5b3cb
RBR
32
33quality:
62f24f2d
RBR
34 stage: "quality"
35 needs: ["test"]
7ce5b3cb
RBR
36 image:
37 name: sonarsource/sonar-scanner-cli:latest
38 entrypoint: [""]
39 cache:
40 key: "${CI_JOB_NAME}"
41 paths:
42 - .sonar/cache
43 script:
44 - npm run coverage
45 - sonar-scanner
46 only:
47 - merge_requests
48 - master