This commit is contained in:
oatmealine 2020-01-25 17:25:43 +03:00
commit b809c79677
No known key found for this signature in database
GPG Key ID: C4CB49CFAD721145
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