瀏覽代碼

add typecheck to gitlab CI

Olivier Massot 4 月之前
父節點
當前提交
f9c1a28d9d
共有 1 個文件被更改,包括 6 次插入0 次删除
  1. 6 0
      .gitlab-ci.yml

+ 6 - 0
.gitlab-ci.yml

@@ -52,6 +52,12 @@ unit:
   # Extract total coverage from job logs (https://docs.gitlab.com/15.6/ee/ci/yaml/index.html#coverage)
   coverage: '/All files\s*|\s*\d+\.\d+/'
 
+typecheck:
+  <<: *default_config
+  stage: analysis
+  script:
+    - yarn typecheck
+
 code_quality:
   <<: *default_config
   stage: analysis