Skip to content

Commit 116514d

Browse files
Remove commented code
1 parent f47e033 commit 116514d

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

.github/workflows/playwright.yml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)