Skip to content
Snippets Groups Projects
.gitlab-ci.yml 553 B
image: node:16

stages:
  - test
  - build

cache:
  paths:
    - node_modules/

test:
  stage: test
  script:
    - npm config set https-proxy http://webproxy.bs.ptb.de:8080
    - npm config set http-proxy http://webproxy.bs.ptb.de:8080
    - npm install
    - npm run test
  artifacts:
    paths:
      - coverage/

build:
  stage: build
  script:
    - npm config set https-proxy http://webproxy.bs.ptb.de:8080
    - npm config set http-proxy http://webproxy.bs.ptb.de:8080
    - npm install
    - npm run build
  artifacts:
    paths:
      - dist/