25
25
- run : npx nx affected --target=typecheck
26
26
test-unit-asyncify :
27
27
runs-on : ubuntu-latest
28
- # needs: [lint-and-typecheck]
28
+ needs : [lint-and-typecheck]
29
29
if : false # TODO: Re-enable this once the tests are fixed
30
30
strategy :
31
31
fail-fast : false
@@ -106,7 +106,7 @@ jobs:
106
106
# - run: node --experimental-wasm-jspi --experimental-wasm-stack-switching --expose-gc node_modules/nx/bin/nx affected --target=test --configuration=ci
107
107
test-e2e :
108
108
runs-on : ubuntu-latest
109
- # needs: [lint-and-typecheck]
109
+ needs : [lint-and-typecheck]
110
110
if : false # TODO: Re-enable this once the tests are fixed
111
111
# Run as root to allow node to bind to port 80
112
112
steps :
@@ -125,7 +125,7 @@ jobs:
125
125
126
126
test-e2e-playwright-prepare :
127
127
runs-on : ubuntu-latest
128
- # needs: [lint-and-typecheck]
128
+ needs : [lint-and-typecheck]
129
129
steps :
130
130
- uses : actions/checkout@v4
131
131
with :
@@ -187,7 +187,7 @@ jobs:
187
187
name : playwright-dist
188
188
test-built-npm-packages :
189
189
runs-on : ubuntu-latest
190
- # needs: [lint-and-typecheck]
190
+ needs : [lint-and-typecheck]
191
191
steps :
192
192
- uses : actions/checkout@v4
193
193
with :
@@ -274,7 +274,7 @@ jobs:
274
274
275
275
test-running-unbuilt-playground-cli :
276
276
runs-on : ubuntu-latest
277
- # needs: [lint-and-typecheck]
277
+ needs : [lint-and-typecheck]
278
278
steps :
279
279
- uses : actions/checkout@v4
280
280
with :
@@ -284,7 +284,7 @@ jobs:
284
284
285
285
build :
286
286
runs-on : ubuntu-latest
287
- # needs: [lint-and-typecheck]
287
+ needs : [lint-and-typecheck]
288
288
steps :
289
289
- uses : actions/checkout@v4
290
290
with :
0 commit comments