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
|