File tree Expand file tree Collapse file tree 1 file changed +3
-9
lines changed
Expand file tree Collapse file tree 1 file changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -25,22 +25,16 @@ jobs:
2525 run : npx playwright install --with-deps
2626
2727 - name : Build app and run tests
28- id : build-app
28+ id : run-tests
2929 run : npm run test:ci:integration
3030 continue-on-error : true
3131
32- # - name: Test status
33- # id: test-status
34- # if: contains(steps.build-app.outputs, 'Built in')
35- # run: npm run playwright
36-
37- # https://docs.github.com/en/actions/reference/context-and-expression-syntax-for-github-actions#job-status-check-functions
3832 - name : Set successful workflow status ✅
39- if : steps.build-app .outcome == 'success'
33+ if : steps.run-tests .outcome == 'success'
4034 run : exit 0
4135
4236 - name : Set failure workflow status 🚨
43- if : steps.build-app .outcome != 'success'
37+ if : steps.run-tests .outcome != 'success'
4438 run : exit 1
4539
4640 - name : Upload Playwright report
You can’t perform that action at this time.
0 commit comments