Skip to content
Permalink
151443731a
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
40 lines (34 sloc) 575 Bytes
image: node:latest
stages:
- code-testing
- staging-server
- acceptance-testing
linting:
stage: code-testing
script:
- npm install
- npm run linter
unit-testing:
stage: code-testing
script:
- npm install
- npm test
code-coverage:
stage: code-testing
script:
- npm install
- npm run coverage
- npm run check-coverage
artifacts:
paths:
- docs
expire_in: 30 days
only:
- master
acceptance-tests:
stage: acceptance-testing
script:
- npm install --only=dev
- npm run acceptance
only:
- master