Skip to content
Permalink
master
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
image: node:latest
stages:
- code-testing
- staging-server
- acceptance-testing
linting:
stage: code-testing
script:
- npm install
- npm run linter
dependency-checks:
stage: code-testing
script:
- npm install
- npm run dependency
unit-testing:
stage: code-testing
script:
- npm install
- npm test
code-coverage:
stage: code-testing
script:
- npm install
- npm run coverage
coverage-report:
stage: staging-server
script:
- npm install
- npm run coverage
artifacts:
paths:
- docs
expire_in: 30 days
only:
- master