cloudservices/.gitlab-ci.yml

20 lines
367 B
YAML
Raw Normal View History

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
- 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