forked from engineering/cloudservices
19 lines
308 B
YAML
19 lines
308 B
YAML
|
stages:
|
||
|
- build
|
||
|
- test
|
||
|
|
||
|
typescript_build:
|
||
|
stage: build
|
||
|
script:
|
||
|
- cp /var/CloudServices/src/config.json ./src/config.json
|
||
|
- yarn install --ignore-engines
|
||
|
- tsc -p ./tsconfig.json
|
||
|
|
||
|
lint:
|
||
|
stage: test
|
||
|
before_script:
|
||
|
- yarn install --ignore-engines
|
||
|
script:
|
||
|
- yarn run lint-find
|
||
|
|