1
0
Fork 0
cloudservices/.gitlab-ci.yml

20 lines
367 B
YAML

stages:
- build
- test
typescript_build:
stage: build
script:
- cp ../config.json ./src/config.json
- yarn install --ignore-engines
- tsc -p ./tsconfig.json --traceResolution
lint:
stage: test
before_script:
- cp ../config.json ./src/config.json
- yarn install --ignore-engines
script:
- yarn run lint-find