cloudservices/.gitlab-ci.yml

18 lines
246 B
YAML
Raw Normal View History

2019-12-16 17:41:28 -05:00
stages:
- build
- test
typescript_build:
stage: build
script:
- yarn install --ignore-engines
- tsc -p ./tsconfig.json
lint:
stage: test
before_script:
- yarn install --ignore-engines
script:
- yarn run lint-find