Skip to content
Permalink
Browse files
Added CI Config File
  • Loading branch information
aa7401 committed Nov 14, 2019
1 parent 438ad55 commit 3525cc7bc30d297cfdd62615b1eac36a00d59698
Showing 1 changed file with 42 additions and 0 deletions.
@@ -0,0 +1,42 @@
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

0 comments on commit 3525cc7

Please sign in to comment.