Skip to content
Snippets Groups Projects

Add basic CI pipeline

Merged Alexander Harkness requested to merge ci into master
1 file
+ 13
0
Compare changes
  • Side-by-side
  • Inline
.gitlab-ci.yml 0 → 100644
+ 13
0
default:
image: node:10
before_script:
- npm ci
stages:
- build
backend_build:
stage: build
script:
- npm build
Loading