Skip to content

Commit dd194ab

Browse files
committed
Try to fix CI merge check
1 parent 0bdb3a3 commit dd194ab

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/code-qa.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
- name: Check types
7373
run: pnpm check-types
7474

75-
unit-test:
75+
platform-unit-test:
7676
runs-on: ${{ matrix.os }}
7777
strategy:
7878
matrix:
@@ -133,3 +133,10 @@ jobs:
133133
- name: Run integration tests
134134
working-directory: apps/vscode-e2e
135135
run: xvfb-run -a pnpm test:ci
136+
137+
unit-test:
138+
needs: [platform-unit-test] # [platform-unit-test, integration-test]
139+
runs-on: ubuntu-latest
140+
steps:
141+
- name: NO-OP
142+
run: echo "All tests passed."

0 commit comments

Comments
 (0)