Skip to content

Commit

Permalink
Added .gitlab-ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Dennor committed Sep 22, 2018
1 parent 7709c71 commit fc9122d
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .gitlab-ci.yml
@@ -0,0 +1,20 @@
image: node:carbon

cache:
paths:
- node_modules/

stages:
- build
- test

build:
stage: build
script:
- npm install

test:
stage: test
script:
- npm install
- npm run test

0 comments on commit fc9122d

Please sign in to comment.