Create .gitlab-ci.yml
This commit is contained in:
parent
22ea974ac3
commit
b11f439fee
19
.gitlab-ci.yml
Normal file
19
.gitlab-ci.yml
Normal file
@ -0,0 +1,19 @@
|
||||
# Official framework image. Look for the different tagged releases at:
|
||||
# https://hub.docker.com/r/library/node/tags/
|
||||
image: node:latest
|
||||
|
||||
# This folder is cached between builds
|
||||
# http://docs.gitlab.com/ce/ci/yaml/README.html#cache
|
||||
cache:
|
||||
paths:
|
||||
- node_modules/
|
||||
|
||||
test_async:
|
||||
script:
|
||||
- npm install
|
||||
- node ./specs/start.js ./specs/async.spec.js
|
||||
|
||||
test_db:
|
||||
script:
|
||||
- npm install
|
||||
- node ./specs/start.js ./specs/db-postgres.spec.js
|
Loading…
x
Reference in New Issue
Block a user