cloudservices/.gitlab-ci.yml

19 lines
291 B
YAML

stages:
- build
- test
typescript_build:
stage: build
script:
- cp ../../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