community-relations/.gitlab-ci.yml

23 lines
265 B
YAML
Raw Normal View History

2020-05-16 19:01:33 -04:00
stages:
- lint
- build
2020-05-16 18:57:34 -04:00
2020-05-16 19:01:33 -04:00
lint:
stage: lint
script: |
yarn install
yarn lint
2020-05-19 06:08:56 -04:00
only:
- pushes
- merge_requests
- web
2020-05-16 18:57:34 -04:00
2020-05-16 19:01:33 -04:00
tsc:
stage: build
script: |
yarn install
2020-05-19 06:08:56 -04:00
tsc -p tsconfig.json -noEmit
only:
- pushes
- merge_requests
- web