gitlab ci

This commit is contained in:
Morgan Allen 2018-07-28 13:57:07 -07:00
parent 611ac97f3f
commit e9acc2081c
1 changed files with 25 additions and 0 deletions

25
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,25 @@
image: node:latest
cache:
paths:
- node_modules/
all_tests:
stage: test
script:
- make -f test/lora32/Makefile
- npm install --unsafe-perm
- npm test
artifacts:
paths:
- public
pages:
stage: deploy
dependencies:
- all_tests
script:
- echo "Echo"
artifacts:
paths:
- public