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

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