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