Add .gitlab-ci.yml

This commit is contained in:
oatmealine 2020-01-25 13:17:40 +00:00
parent a9fee71c6a
commit 05d94c96d2
1 changed files with 16 additions and 0 deletions

16
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,16 @@
image: node:latest
# This folder is cached between builds
cache:
paths:
- node_modules/
build_typescript:
script:
- npm install
- tsc
test_lint:
script:
- npm install
- npm run lint