aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 2432bbe30bcad43a3ad32ffef20d1f8b0705204d (plain)
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
.only-default: &only-default
  only:
    - branches
    - merge_requests
    - tags
    - refs

image: node:14

variables:
  SONAR_USER_HOME: "${CI_PROJECT_DIR}/.sonar"  # Defines the location of the analysis task cache
  GIT_DEPTH: "0"

stages:
  - lint
  - test
  - quality

before_script:
    - npm install

cache:
  key: ${CI_COMMIT_REF_SLUG}
  paths:
    - node_modules/
    - .nyc_output/
    - .sonar/cache

lint:
  <<: *only-default
  stage: lint
  script:
    - npm run lint

test:
  <<: *only-default
  stage: test
  script:
    - npm test

quality:
  <<: *only-default
  stage: quality
  needs:
    - test
  image:
    name: sonarsource/sonar-scanner-cli:latest
    entrypoint: [""]
  script:
    - npm run coverage
    - sonar-scanner