cumstorm/.gitlab-ci.yml

18 lines
249 B
YAML

image: node:latest
# This folder is cached between builds
cache:
paths:
- node_modules/
build_typescript:
script:
- npm install
- npm install --global typescript
- tsc
test_lint:
script:
- npm install
- npm run lint