We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fe719f commit 1ebd4fcCopy full SHA for 1ebd4fc
.github/workflows/wpt.yml
@@ -62,6 +62,23 @@ jobs:
62
# TODO remove the continue-on-error when tests will pass.
63
continue-on-error: true
64
65
+ wpt-json:
66
+ name: web platform tests json output
67
+
68
+ # Don't execute on PR
69
+ if: github.event_name != 'pull_request'
70
71
+ runs-on: ubuntu-latest
72
73
+ steps:
74
+ - uses: actions/checkout@v4
75
+ with:
76
+ fetch-depth: 0
77
+ # fetch submodules recusively, to get zig-js-runtime submodules also.
78
+ submodules: recursive
79
80
+ - uses: ./.github/actions/install
81
82
- name: json output
83
run: zig build wpt -Dengine=v8 -- --safe --json > wpt.json
84
@@ -80,7 +97,7 @@ jobs:
97
98
perf-fmt:
99
name: perf-fmt
- needs: wpt
100
+ needs: wpt-json
101
85
102
# Don't execute on PR
86
103
if: github.event_name != 'pull_request'
0 commit comments