Skip to content
Snippets Groups Projects

Initial GitLab CI configuration

Merged Andreas Kluge Svendsrud requested to merge feat/workflow-ci into main
1 file
+ 20
0
Compare changes
  • Side-by-side
  • Inline
.gitlab-ci.yml 0 → 100644
+ 20
0
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
Loading