Add .gitlab-ci.yml
This commit is contained in:
parent
a07e3826c2
commit
a47ed4d26c
1 changed files with 19 additions and 0 deletions
19
.gitlab-ci.yml
Normal file
19
.gitlab-ci.yml
Normal file
|
@ -0,0 +1,19 @@
|
|||
image: node:latest
|
||||
|
||||
stages:
|
||||
- test
|
||||
|
||||
lint:
|
||||
stage: test
|
||||
script:
|
||||
- npm run lint
|
||||
|
||||
compile:
|
||||
stage: test
|
||||
script:
|
||||
- npm run build
|
||||
|
||||
#test:
|
||||
# stage: test
|
||||
# script:
|
||||
# - npm test
|
Loading…
Reference in a new issue