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
|
2020-05-16 19:04:34 -04:00
|
|
|
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
|
2020-05-16 19:04:34 -04:00
|
|
|
script: |
|
|
|
|
yarn install
|
2020-05-19 06:08:56 -04:00
|
|
|
tsc -p tsconfig.json -noEmit
|
|
|
|
only:
|
|
|
|
- pushes
|
|
|
|
- merge_requests
|
|
|
|
- web
|