minime/.gitlab-ci.yml
2020-08-01 12:38:47 -04:00

17 lines
168 B
YAML

image: node:12-buster
cache:
paths:
- node_modules/
stages:
- build
do_build:
stage: build
script:
- npm install
- npm run build
- npm test