Select Git revision
.gitlab-ci.yml 221 B
image: node:14.6.0
stages:
- test
job:estlint:
stage: test
script:
- npm install eslint
- npm run lint
job:test-run:
stage: test
script:
- npm install
- npm run test