We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87f2b92 commit eb5a627Copy full SHA for eb5a627
.github/workflows/ci.yml
@@ -117,7 +117,7 @@ jobs:
117
name: Deploy and Update PR
118
needs: e2e_tests
119
runs-on: ubuntu-latest
120
- if: github.event.pull_request.head.repo.full_name == github.repository
+ if: always() && github.event.pull_request.head.repo.full_name == github.repository
121
permissions:
122
contents: write
123
pages: write
playwright.config.ts
@@ -11,7 +11,7 @@ const config: PlaywrightTestConfig = {
11
['html', {outputFolder: './playwright-artifacts/playwright-report'}],
12
['json', {outputFile: './playwright-artifacts/test-results.json'}],
13
],
14
-
+ retries: 2,
15
// If there is no url provided, playwright starts webServer with the app in dev mode
16
webServer: baseUrl
17
? undefined
0 commit comments