aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2022-01-09 12:51:44 +0100
committerLibravatar Kristóf Marussy <kristof@marussy.com>2022-01-09 19:55:15 +0100
commitad193ec612cf3110ed847b7cb2fedb0b1080ef86 (patch)
treecb4931ffb8588a8a2475be881c4af91ed2ffef64 /.gitlab-ci.yml
parentUpdate docs (diff)
downloadsophie-ad193ec612cf3110ed847b7cb2fedb0b1080ef86.tar.gz
sophie-ad193ec612cf3110ed847b7cb2fedb0b1080ef86.tar.zst
sophie-ad193ec612cf3110ed847b7cb2fedb0b1080ef86.zip
build: Disable single-run eslint-typescript
See https://github.com/typescript-eslint/typescript-eslint/issues/3851 Also upgrades dependencies and simplifies eslint config (used during debugging this issue to eliminate other possible sources of errors.) Signed-off-by: Kristóf Marussy <kristof@marussy.com>
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