Add .gitlab-ci.yml

This commit is contained in:
Moe Poi ~ 2020-05-11 18:09:23 +00:00
parent cc0ad15ce0
commit 42a65fc1d5

13
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,13 @@
image: node:latest
stages: [ init, run ]
cache:
stage: init
paths:
- node_modules/
test:
stage: run
script:
- npm install
- node example.js