aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index c522036..1e94ade 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -16,7 +16,8 @@ default:
16lint: 16lint:
17 stage: code-quality 17 stage: code-quality
18 script: 18 script:
19 - yarn lint --format gitlab 19 - yarn types
20 - yarn lint:ci
20 artifacts: 21 artifacts:
21 reports: 22 reports:
22 codequality: gl-codequality.json 23 codequality: gl-codequality.json
@@ -24,7 +25,8 @@ lint:
24typecheck: 25typecheck:
25 stage: code-quality 26 stage: code-quality
26 script: 27 script:
27 - yarn typecheck 28 - yarn types
29 - yarn typecheck:ci
28 30
29test: 31test:
30 stage: test 32 stage: test