diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index eede4ce..90b40a8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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 \ No newline at end of file + script: | + yarn install + tsc -p tsconfig.json -noEmit \ No newline at end of file