Browse Source

gitlab ci

pull/1/head
Levi Olson 6 years ago
parent
commit
8bafba2d94
1 changed files with 18 additions and 0 deletions
  1. +18
    -0
      .gitlab-ci.yml

+ 18
- 0
.gitlab-ci.yml View File

@ -0,0 +1,18 @@
# This file is a template, and might need editing before it works on your project.
# Official framework image. Look for the different tagged releases at:
# https://hub.docker.com/r/library/node/tags/
image: node:latest
cache:
paths:
- node_modules/
test_async:
script:
- npm install
- npm run test
test_coverage:
script:
- npm install
- npm run coverage

Loading…
Cancel
Save