From fb37fb9e71753c6c15267732cf5e0b35c4924516 Mon Sep 17 00:00:00 2001 From: Bsian Date: Sun, 17 May 2020 00:04:34 +0100 Subject: [PATCH] Except this time we need to install node modules --- .gitlab-ci.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) 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