9
9
secrets :
10
10
READER_TOKEN :
11
11
required : true
12
+
12
13
jobs :
13
14
playwright-tests :
14
15
timeout-minutes : 15
15
16
runs-on : ubuntu-latest
16
17
strategy :
17
18
fail-fast : false
18
19
matrix :
19
- shardIndex : [ 1, 2, 3, 4, 5 ]
20
- shardTotal : [ 5 ]
20
+ shardIndex : [ 1, 2, 3 ]
21
+ shardTotal : [ 3 ]
21
22
env :
22
23
NODE_AUTH_TOKEN : ${{ secrets.READER_TOKEN }}
23
24
steps :
35
36
run : npx playwright install --with-deps
36
37
- name : Run Playwright tests
37
38
working-directory : ${{ inputs.working-directory }}/src/main/js
38
- run : npx playwright test --shard=${{ matrix.shardIndex }}/${{ matrix.shardTotal }}
39
+ run : npx playwright test --shard=${{ matrix.shardIndex }}/${{ matrix.shardTotal }}
40
+ - name : Upload blob report to GitHub Actions Artifacts
41
+ if : ${{ !cancelled() }}
42
+ uses : actions/upload-artifact@v4
43
+ with :
44
+ name : blob-report-${{ matrix.shardIndex }}
45
+ path : ${{ inputs.working-directory }}/src/main/js/blob-report
46
+ retention-days : 1
47
+
48
+ merge-reports :
49
+ if : ${{ !cancelled() }}
50
+ needs : [ playwright-tests ]
51
+ runs-on : ubuntu-latest
52
+ steps :
53
+ - uses : actions/checkout@v4
54
+ - uses : actions/setup-node@v4
55
+ with :
56
+ node-version : 22.x
57
+
58
+ - name : Download blob reports from GitHub Actions Artifacts
59
+ uses : actions/download-artifact@v4
60
+ with :
61
+ path : ${{ inputs.working-directory }}/src/main/js/all-blob-reports
62
+ pattern : blob-report-*
63
+ merge-multiple : true
64
+
65
+ - name : Merge into HTML Report
66
+ working-directory : ${{ inputs.working-directory }}/src/main/js
67
+ run : npx playwright merge-reports --reporter html ./all-blob-reports
68
+
69
+ - name : Upload HTML report
70
+ uses : actions/upload-artifact@v4
71
+ with :
72
+ name : html-report--attempt-${{ github.run_attempt }}
73
+ path : ${{ inputs.working-directory }}/src/main/js/playwright-report
74
+ retention-days : 14
75
+
76
+ - name : Upload HTML report to CDN
77
+ uses : nais/deploy/actions/cdn-upload/v2@master
78
+ with :
79
+ team : dolly
80
+ source : ${{ inputs.working-directory }}/src/main/js/playwright-report
81
+ destination : /${{ github.repository }}/${{ github.run_number }}
82
+ identity_provider : ${{ secrets.NAIS_WORKLOAD_IDENTITY_PROVIDER }}
83
+ # project_id: ${{ vars.NAIS_MANAGEMENT_PROJECT_ID }}
84
+
85
+ - name : Merge to json report
86
+ working-directory : ${{ inputs.working-directory }}/src/main/js
87
+ run : npx playwright merge-reports --reporter json ./all-blob-reports > playwright-report/report.json
88
+
89
+ - name : Make fancy GHA Summary
90
+ working-directory : ${{ inputs.working-directory }}/src/main/js
91
+ run : |
92
+ total_tests=$(jq '.stats.expected + .stats.unexpected' playwright-report/report.json)
93
+ passed_tests=$(jq '.stats.expected' playwright-report/report.json)
94
+ failed_tests=$(jq '.stats.unexpected' playwright-report/report.json)
95
+ failed_test_info=$(jq -r '.suites[].specs[] | select(.ok == false) | "\(.title) (\(.file), \(.tests[].projectName))"' playwright-report/report.json)
96
+ echo "## Playwright Test Report Summary" >> $GITHUB_STEP_SUMMARY
97
+ echo "Total tests: $total_tests ✅" >> $GITHUB_STEP_SUMMARY
98
+ echo "Passed tests: $passed_tests ✅" >> $GITHUB_STEP_SUMMARY
99
+ if [ "$failed_tests" -gt 0 ]; then
100
+ echo "Failed tests: $failed_tests ❌" >> $GITHUB_STEP_SUMMARY
101
+ echo "### Failed Tests:" >> $GITHUB_STEP_SUMMARY
102
+ while IFS= read -r test; do
103
+ echo "- $test ❌" >> $GITHUB_STEP_SUMMARY
104
+ done <<< "$failed_test_info"
105
+ else
106
+ echo "Failed tests: $failed_tests 🔹" >> $GITHUB_STEP_SUMMARY
107
+ fi
108
+ echo "Se hele rapporten [her](https://cdn.nav.no/dolly/${{ github.repository }}/${{ github.run_number }}/playwright-report/index.html)." >> $GITHUB_STEP_SUMMARY
0 commit comments