update gitlab-ci
This commit is contained in:
parent
4bfb80e6be
commit
5d89fbbd46
1 changed files with 17 additions and 12 deletions
|
@ -1,19 +1,24 @@
|
||||||
image: node:latest
|
image: node:latest
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
- test
|
- test
|
||||||
|
|
||||||
lint:
|
lint:
|
||||||
stage: test
|
stage: test
|
||||||
script:
|
before_script:
|
||||||
- npm run lint
|
- npm install
|
||||||
|
script:
|
||||||
|
- npm run lint
|
||||||
|
|
||||||
compile:
|
compile:
|
||||||
stage: test
|
stage: test
|
||||||
script:
|
before_script:
|
||||||
- npm run build
|
- npm install
|
||||||
|
script:
|
||||||
#test:
|
- npm run build
|
||||||
# stage: test
|
# test:
|
||||||
# script:
|
# stage: test
|
||||||
# - npm test
|
# before_script:
|
||||||
|
# - npm install
|
||||||
|
# script:
|
||||||
|
# - npm test
|
||||||
|
|
Loading…
Reference in a new issue