File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -147,3 +147,12 @@ jobs:
147
147
run : pnpm run test:benchmark
148
148
# token retrieved from the CodSpeed app at the previous step
149
149
token : ${{ secrets.CODSPEED_TOKEN }}
150
+
151
+ # ======== exit ========
152
+ pr-check-required :
153
+ if : (!cancelled() && !failure())
154
+ needs : [ut-ubuntu, integration-e2e-ubuntu, benchmark-ubuntu]
155
+ runs-on : ubuntu-latest
156
+ name : Test passed or skipped
157
+ steps :
158
+ - run : echo "All tests passed or skipped."
Original file line number Diff line number Diff line change @@ -120,3 +120,12 @@ jobs:
120
120
121
121
- name : E2E Test (Playwright)
122
122
run : pnpm run test:e2e
123
+
124
+ # ======== exit ========
125
+ pr-check-required :
126
+ if : (!cancelled() && !failure())
127
+ needs : [ut-windows, integration-e2e-windows]
128
+ runs-on : ubuntu-latest
129
+ name : Test passed or skipped
130
+ steps :
131
+ - run : echo "All tests passed or skipped."
You can’t perform that action at this time.
0 commit comments