ci: add a browser fetch test

This commit is contained in:
Pierre Tachoire
2025-03-28 13:33:05 +01:00
parent 95cae6e7de
commit fbe8086c98

View File

@@ -66,6 +66,25 @@ jobs:
zig-out/bin/lightpanda zig-out/bin/lightpanda
retention-days: 1 retention-days: 1
browser-fetch:
name: browser fetch
needs: zig-build-dev
# Don't run the CI with draft PR.
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- name: download artifact
uses: actions/download-artifact@v4
with:
name: lightpanda-build-dev
- run: chmod a+x ./lightpanda
- run: ./lightpanda fetch https://httpbin.io/xhr/get
zig-test: zig-test:
name: zig test name: zig test