Skip to content
Snippets Groups Projects
Commit b8815125 authored by Andreas's avatar Andreas
Browse files

feat/Add initial GitLab CI configuration

parent bf7bcbda
No related branches found
No related tags found
1 merge request!2Initial GitLab CI configuration
Pipeline #273399 failed
stages:
- install
- build
cache:
paths:
- node_modules/
key: "$CI_BUILD_REF_NAME" # Separate cache for each branch
install_dependencies:
stage: install
image: node:latest
script:
- npm install
build_project:
stage: build
image: node:latest
script:
- npm run build
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment