2020-05-04 07:51:16 -04:00
|
|
|
stages:
|
|
|
|
- build
|
|
|
|
- test
|
|
|
|
|
|
|
|
typescript_build:
|
|
|
|
stage: build
|
|
|
|
script:
|
|
|
|
- cp ../config.json ./src/config.json
|
|
|
|
- yarn install --ignore-engines
|
2020-05-04 08:08:21 -04:00
|
|
|
- tsc -p ./tsconfig.json
|
2020-05-04 07:51:16 -04:00
|
|
|
|
|
|
|
lint:
|
|
|
|
stage: test
|
|
|
|
before_script:
|
|
|
|
- cp ../config.json ./src/config.json
|
|
|
|
- yarn install --ignore-engines
|
|
|
|
script:
|
|
|
|
- yarn run lint-find
|
|
|
|
|