Skip to content

Commit ae7756e

Browse files
sunkertolzhabayev
andauthored
Playwright: Use new GH Pages actions (#1504)
Co-authored-by: Timur Olzhabayev <[email protected]>
1 parent 919576b commit ae7756e

11 files changed

+114
-84
lines changed

.github/workflows/playwright.yml

+19-6
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ on:
66
- '.github/workflows/playwright.yml'
77

88
permissions:
9-
contents: read
9+
contents: write
1010
id-token: write
11+
pull-requests: write
1112

1213
jobs:
1314
resolve-versions:
@@ -82,9 +83,21 @@ jobs:
8283
id: run-tests
8384
run: npm run playwright:test --w @grafana/plugin-e2e
8485

85-
- name: Publish report to GCS
86-
if: ${{ github.repository_owner == 'grafana' && (failure() && steps.run-tests.outcome == 'failure') }}
87-
uses: grafana/plugin-actions/publish-report@main
86+
- name: Upload e2e test summary
87+
uses: grafana/plugin-actions/playwright-gh-pages/upload-report-artifacts@main
88+
if: ${{ always() && !cancelled() }}
8889
with:
89-
grafana-version: ${{ matrix.GRAFANA_IMAGE.VERSION }}
90-
path: packages/plugin-e2e/playwright-report
90+
github-token: ${{ secrets.GITHUB_TOKEN }}
91+
test-outcome: ${{ steps.run-tests.outcome }}
92+
report-dir: packages/plugin-e2e/playwright-report
93+
94+
publish-report:
95+
if: ${{ always() && !cancelled() }}
96+
needs: [playwright-tests]
97+
runs-on: ubuntu-latest
98+
steps:
99+
- uses: actions/checkout@v4
100+
- name: Publish report
101+
uses: grafana/plugin-actions/playwright-gh-pages/deploy-report-pages@main
102+
with:
103+
github-token: ${{ secrets.GITHUB_TOKEN }}

docusaurus/docs/e2e-test-a-plugin/ci.md

+63-3
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,68 @@ queryString="current-package-manager"
7272
/>
7373
</details>
7474

75-
## Playwright report
75+
## Publish Playwright reports to GitHub Pages
7676

77-
The end-to-end tooling generates a Playwright HTML test report for every Grafana version that is being tested. In case any of the tests fail, a Playwright trace viewer is also generated along with the report. The `Upload artifacts` step in the example workflows uploads the report to GitHub as an artifact.
77+
The Playwright [HTML report](https://playwright.dev/docs/test-reporters#html-reporter), along with the [Trace Viewer](https://playwright.dev/docs/trace-viewer), provides powerful tools for troubleshooting issues found during the execution of end-to-end test. This section explains how to deploy these reports to GitHub's static site hosting service GitHub Pages, making them immediately accessible for review after tests complete.
7878

79-
To find information on how to download and view the report, refer to the [Playwright documentation](https://playwright.dev/docs/ci-intro#html-report).
79+
This guide is based on the example workflow provided earlier in this document.
80+
81+
### Steps to enable report publishing
82+
83+
1. Immediately following the step that executes the tests, add a step that uses the `upload-report-artifacts` Action to upload the report and a test summary as an to GitHub artifacts.
84+
85+
```yml
86+
- name: Run Playwright tests
87+
id: run-tests
88+
run: npx playwright test
89+
90+
- name: Upload e2e test summary
91+
uses: grafana/plugin-actions/playwright-gh-pages/upload-report-artifacts@main
92+
if: ${{ (always() && !cancelled()) }}
93+
with:
94+
github-token: ${{ secrets.GITHUB_TOKEN }}
95+
test-outcome: ${{ steps.run-tests.outcome }}
96+
```
97+
98+
2. After the `playwright-tests` job, add a new job to download the report artifacts, deploy them to GitHub Pages, and publish a PR comment summarizing the test results, including links to the reports.
99+
100+
```yml
101+
publish-report:
102+
if: ${{ (always() && !cancelled()) }}
103+
needs: [playwright-tests]
104+
runs-on: ubuntu-latest
105+
steps:
106+
- uses: actions/checkout@v4
107+
- name: Publish report
108+
uses: grafana/plugin-actions/playwright-gh-pages/deploy-report-pages@main
109+
with:
110+
github-token: ${{ secrets.GITHUB_TOKEN }}
111+
```
112+
113+
3. Modify the workflow permissions to allow it to push changes, query the GitHub API and update PR comments.
114+
115+
```yml
116+
permissions:
117+
contents: write
118+
id-token: write
119+
pull-requests: write
120+
```
121+
122+
4. If GitHub Pages is not yet enabled for your repository, configure a source branch for deployment. Follow the detailed instructions [here](https://github.com/grafana/plugin-actions/tree/main/playwright-gh-pages#github-pages-branch-configuration) to set it up.
123+
124+
For additional configuration options and examples, refer to the `playwright-gh-pages` [documentation](https://github.com/grafana/plugin-actions/blob/main/playwright-gh-pages/README.md).
125+
126+
### Important considerations
127+
128+
- **Public visibility**: By default, GitHub Pages sites are publicly accessible on the Internet. If your end-to-end tests include sensitive data or secrets, be aware of potential exposure risks.
129+
- **Enterprise access control**: If you have a GitHub Enterprise account, you can configure access controls to restrict visibility. For details, refer to the [GitHub documentation](https://docs.github.com/en/enterprise-cloud@latest/pages/getting-started-with-github-pages/changing-the-visibility-of-your-github-pages-site).
130+
131+
### Report summary
132+
133+
The `publish-report` job adds a PR comment summarizing all the tests executed as part of the matrix. For tests that failed, the comment includes links to the GitHub Pages website, where the detailed reports can be browsed.
134+
135+
![](/img/e2e-report-summary.png)
136+
137+
```
138+
139+
```

docusaurus/docs/snippets/plugin-e2e-ds-workflow.npm.md

-10
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,4 @@ jobs:
6868
- name: Run Playwright tests
6969
id: run-tests
7070
run: npx playwright test
71-
72-
# Uncomment this step to upload the Playwright report to Github artifacts.
73-
# If your repository is public, the report will be public on the Internet so beware not to expose sensitive information.
74-
# - name: Upload artifacts
75-
# uses: actions/upload-artifact@v4
76-
# if: ${{ (always() && steps.run-tests.outcome == 'success') || (failure() && steps.run-tests.outcome == 'failure') }}
77-
# with:
78-
# name: playwright-report-${{ matrix.GRAFANA_IMAGE.NAME }}-v${{ matrix.GRAFANA_IMAGE.VERSION }}-${{github.run_id}}
79-
# path: playwright-report/
80-
# retention-days: 30
8171
```

docusaurus/docs/snippets/plugin-e2e-ds-workflow.pnpm.md

-10
Original file line numberDiff line numberDiff line change
@@ -70,14 +70,4 @@ jobs:
7070
- name: Run Playwright tests
7171
id: run-tests
7272
run: pnpm playwright test
73-
74-
# Uncomment this step to upload the Playwright report to Github artifacts.
75-
# If your repository is public, the report will be public on the Internet so beware not to expose sensitive information.
76-
# - name: Upload artifacts
77-
# uses: actions/upload-artifact@v4
78-
# if: ${{(always() && steps.run-tests.outcome == 'success') || (failure() && steps.run-tests.outcome == 'failure') }}
79-
# with:
80-
# name: playwright-report-${{ matrix.GRAFANA_IMAGE.NAME }}-v${{ matrix.GRAFANA_IMAGE.VERSION }}-${{github.run_id}}
81-
# path: playwright-report/
82-
# retention-days: 30
8373
```

docusaurus/docs/snippets/plugin-e2e-ds-workflow.yarn.md

-10
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,4 @@ jobs:
6868
- name: Run Playwright tests
6969
id: run-tests
7070
run: yarn playwright test
71-
72-
# Uncomment this step to upload the Playwright report to Github artifacts.
73-
# If your repository is public, the report will be public on the Internet so beware not to expose sensitive information.
74-
# - name: Upload artifacts
75-
# uses: actions/upload-artifact@v4
76-
# if: ${{ (always() && steps.run-tests.outcome == 'success') || (failure() && steps.run-tests.outcome == 'failure') }}
77-
# with:
78-
# name: playwright-report-${{ matrix.GRAFANA_IMAGE.NAME }}-v${{ matrix.GRAFANA_IMAGE.VERSION }}-${{github.run_id}}
79-
# path: playwright-report/
80-
# retention-days: 30
8171
```

docusaurus/docs/snippets/plugin-e2e-fe-plugin-workflow.npm.md

-10
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,4 @@ jobs:
6060
- name: Run Playwright tests
6161
id: run-tests
6262
run: npx playwright test
63-
64-
# Uncomment this step to upload the Playwright report to Github artifacts.
65-
# If your repository is public, the report will be public on the Internet so beware not to expose sensitive information.
66-
# - name: Upload artifacts
67-
# uses: actions/upload-artifact@v4
68-
# if: ${{ (always() && steps.run-tests.outcome == 'success') || (failure() && steps.run-tests.outcome == 'failure') }}
69-
# with:
70-
# name: playwright-report-${{ matrix.GRAFANA_IMAGE.NAME }}-v${{ matrix.GRAFANA_IMAGE.VERSION }}-${{github.run_id}}
71-
# path: playwright-report/
72-
# retention-days: 30
7363
```

docusaurus/docs/snippets/plugin-e2e-fe-plugin-workflow.pnpm.md

-10
Original file line numberDiff line numberDiff line change
@@ -62,14 +62,4 @@ jobs:
6262
- name: Run Playwright tests
6363
id: run-tests
6464
run: pnpm playwright test
65-
66-
# Uncomment this step to upload the Playwright report to Github artifacts.
67-
# If your repository is public, the report will be public on the Internet so beware not to expose sensitive information.
68-
# - name: Upload artifacts
69-
# uses: actions/upload-artifact@v4
70-
# if: ${{ (always() && steps.run-tests.outcome == 'success') || (failure() && steps.run-tests.outcome == 'failure') }}
71-
# with:
72-
# name: playwright-report-${{ matrix.GRAFANA_IMAGE.NAME }}-v${{ matrix.GRAFANA_IMAGE.VERSION }}-${{github.run_id}}
73-
# path: playwright-report/
74-
# retention-days: 30
7565
```

docusaurus/docs/snippets/plugin-e2e-fe-plugin-workflow.yarn.md

-10
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,4 @@ jobs:
6060
- name: Run Playwright tests
6161
id: run-tests
6262
run: yarn playwright test
63-
64-
# Uncomment this step to upload the Playwright report to Github artifacts.
65-
# If your repository is public, the report will be public on the Internet so beware not to expose sensitive information.
66-
# - name: Upload artifacts
67-
# uses: actions/upload-artifact@v4
68-
# if: ${{ (always() && steps.run-tests.outcome == 'success') || (failure() && steps.run-tests.outcome == 'failure') }}
69-
# with:
70-
# name: playwright-report-${{ matrix.GRAFANA_IMAGE.NAME }}-v${{ matrix.GRAFANA_IMAGE.VERSION }}-${{github.run_id}}
71-
# path: playwright-report/
72-
# retention-days: 30
7363
```
Loading

packages/create-plugin/templates/_partials/frontend-getting-started.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,15 @@
3434
{{ packageManagerName }} run server
3535
```
3636

37-
6. Run the E2E tests (using Cypress)
37+
6. Run the E2E tests (using Playwright)
3838

3939
```bash
4040
# Spins up a Grafana instance first that we tests against
4141
{{ packageManagerName }} run server
4242

43+
# If you wish to start a certain Grafana version. If not specified will use latest by default
44+
GRAFANA_VERSION=11.3.0 {{ packageManagerName }} run server
45+
4346
# Starts the tests
4447
{{ packageManagerName }} run e2e
4548
```

packages/create-plugin/templates/github/workflows/ci.yml

+28-14
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ on:
1111
- master
1212
- main
1313

14-
permissions: read-all
14+
permissions:
15+
contents: write
16+
id-token: write
17+
pull-requests: write
1518

1619
jobs:
1720
build:
@@ -203,6 +206,14 @@ jobs:
203206
id: run-tests
204207
run: {{ packageManagerName }} run e2e
205208

209+
- name: Upload e2e test summary
210+
uses: grafana/plugin-actions/playwright-gh-pages/upload-report-artifacts@main
211+
if: $\{{ always() && !cancelled() }}
212+
with:
213+
upload-report: false
214+
github-token: $\{{ secrets.GITHUB_TOKEN }}
215+
test-outcome: $\{{ steps.run-tests.outcome }}
216+
206217
- name: Docker logs
207218
if: $\{{ always() && steps.run-tests.outcome == 'failure' }}
208219
run: |
@@ -211,20 +222,23 @@ jobs:
211222
- name: Stop grafana docker
212223
run: docker compose down
213224

214-
- name: Upload server log
215-
uses: actions/upload-artifact@v4
216-
if: $\{{ always() && steps.run-tests.outcome == 'failure' }}
217-
with:
218-
name: $\{{ matrix.GRAFANA_IMAGE.NAME }}-v$\{{ matrix.GRAFANA_IMAGE.VERSION }}-$\{{github.run_id}}-server-log
219-
path: grafana-server.log
220-
retention-days: 5
221-
222-
# Uncomment this step to upload the Playwright report to Github artifacts.
223-
# If your repository is public, the report will be public on the Internet so beware not to expose sensitive information.
224-
# - name: Upload artifacts
225+
# Uncomment this step to upload the server log to Github artifacts. Remember Github artifacts are public on the Internet if the repository is public.
226+
# - name: Upload server log
225227
# uses: actions/upload-artifact@v4
226228
# if: $\{{ always() && steps.run-tests.outcome == 'failure' }}
227229
# with:
228-
# name: playwright-report-$\{{ matrix.GRAFANA_IMAGE.NAME }}-v$\{{ matrix.GRAFANA_IMAGE.VERSION }}-$\{{github.run_id}}
229-
# path: playwright-report/
230+
# name: $\{{ matrix.GRAFANA_IMAGE.NAME }}-v$\{{ matrix.GRAFANA_IMAGE.VERSION }}-$\{{github.run_id}}-server-log
231+
# path: grafana-server.log
230232
# retention-days: 5
233+
234+
publish-report:
235+
if: $\{{ always() && !cancelled() }}
236+
needs: [playwright-tests]
237+
runs-on: ubuntu-latest
238+
steps:
239+
- uses: actions/checkout@v4
240+
- name: Publish report
241+
uses: grafana/plugin-actions/playwright-gh-pages/deploy-report-pages@main
242+
with:
243+
github-token: $\{{ secrets.GITHUB_TOKEN }}
244+

0 commit comments

Comments
 (0)