Except this time we need to install node modules

merge-requests/12/head
Bsian 2020-05-17 00:04:34 +01:00
parent 9b9a9e8ce1
commit fb37fb9e71
No known key found for this signature in database
GPG Key ID: 097FB9A291026091
1 changed files with 6 additions and 4 deletions

View File

@ -4,10 +4,12 @@ stages:
lint:
stage: lint
script:
- yarn lint
script: |
yarn install
yarn lint
tsc:
stage: build
script:
- tsc -p tsconfig.json -noEmit
script: |
yarn install
tsc -p tsconfig.json -noEmit