cumstorm/.gitlab-ci.yml

17 lines
211 B
YAML
Raw Normal View History

2020-01-25 14:17:40 +01:00
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