ds4/.gitlab-ci.yml

25 lines
347 B
YAML
Raw Normal View History

2020-12-23 18:36:41 +01:00
image: node:latest
stages:
2020-12-23 20:07:28 +01:00
- test
2020-12-23 18:36:41 +01:00
lint:
2020-12-23 20:07:28 +01:00
stage: test
before_script:
- npm install
script:
- npm run lint
2020-12-23 18:36:41 +01:00
compile:
2020-12-23 20:07:28 +01:00
stage: test
before_script:
- npm install
script:
- npm run build
# test:
# stage: test
# before_script:
# - npm install
# script:
# - npm test