Skip to content
Snippets Groups Projects
Commit b2882e6b authored by Jendrik Wenke's avatar Jendrik Wenke :speech_balloon:
Browse files

move everything to one stage

parent 44676904
No related branches found
No related tags found
No related merge requests found
Pipeline #57045 passed
image: node:24-alpine
stages:
- install
- check
- build
install:
stage: install
build:
stage: build
script:
- npm config set https-proxy http://webproxy.bs.ptb.de:8080
- npm config set proxy http://webproxy.bs.ptb.de:8080
- npm ci
- npm run check
- npm run build
cache:
paths:
- node_modules/
check:
stage: check
script:
- npm run check
build:
stage: build
script:
- npm run build
artifacts:
when: on_success
paths:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment