community-relations/.gitlab-ci.yml

23 lines
265 B
YAML
Raw Normal View History

2021-03-19 21:23:38 -04:00
stages:
- lint
- build
lint:
stage: lint
script: |
yarn install
yarn lint
only:
- pushes
- merge_requests
- web
tsc:
stage: build
script: |
yarn install
tsc -p tsconfig.json -noEmit
only:
- pushes
- merge_requests
- web