We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70e96d6 commit 1a6e07fCopy full SHA for 1a6e07f
.github/workflows/playwright.yml
@@ -24,9 +24,14 @@ jobs:
24
- name: Install Playwright Browsers
25
run: npx playwright install --with-deps
26
27
- - name: Build app and run tests
+ - name: Build app
28
+ id: build-app
29
+ run: npm run example:nocache
30
+
31
+ - name: Run tests
32
id: test-status
- run: npm run test:ci:integration
33
+ if: contains(steps.build-app.outputs, 'Built in')
34
+ run: npm run playwright
35
36
# https://docs.github.com/en/actions/reference/context-and-expression-syntax-for-github-actions#job-status-check-functions
37
# - name: Set successful workflow status ✅
0 commit comments