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 24d5dfe commit 679d9f1Copy full SHA for 679d9f1
.github/workflows/zig-test.yml
@@ -66,6 +66,25 @@ 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: chmod a+x ./lightpanda
85
86
+ - run: ./lightpanda fetch https://httpbin.io/xhr/get
87
88
zig-test:
89
name: zig test
90
0 commit comments