Skip to content
Permalink
9699377779
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
38 lines (32 sloc) 476 Bytes
image: node:latest
stages:
- test
- deploy
lint:
stage: test
script:
- npm install
- npm run linter
test:
stage: test
script:
- npm install
- npm test
cover:
stage: test
script:
- npm install
- npm run coverage
- npm run check-coverage
coverage:
stage: deploy
script:
- npm install
- npm run coverage
- mv ./docs/coverage/ public/
artifacts:
paths:
- public
expire_in: 30 days
only:
- master