ds4/.gitlab-ci.yml
2020-12-23 20:07:28 +01:00

25 lines
347 B
YAML

image: node:latest
stages:
- test
lint:
stage: test
before_script:
- npm install
script:
- npm run lint
compile:
stage: test
before_script:
- npm install
script:
- npm run build
# test:
# stage: test
# before_script:
# - npm install
# script:
# - npm test