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 82e67b7 commit a3a3ba2Copy full SHA for a3a3ba2
.github/workflows/zig-test.yml
@@ -66,6 +66,23 @@ jobs:
66
zig-out/bin/lightpanda
67
retention-days: 1
68
69
+ browser-fetch:
70
+ name: browser fetch
71
+ needs: zig-build-dev
72
+
73
+ # Don't run the CI with draft PR.
74
+ if: github.event.pull_request.draft == false
75
76
+ runs-on: ubuntu-latest
77
78
+ steps:
79
+ - name: download artifact
80
+ uses: actions/download-artifact@v4
81
+ with:
82
+ name: lightpanda-build-dev
83
84
+ - run: ./zig-out/bin/lightpanda fetch https://httpbin.io/xhr/get
85
86
zig-test:
87
name: zig test
88
0 commit comments