From 397c4f28eebfe7a6ad5f6effb9b5e2ceb911a31d Mon Sep 17 00:00:00 2001 From: Filip Skokan Date: Mon, 27 Oct 2025 20:58:12 +0100 Subject: [PATCH] tools: remove undici from daily wpt.fyi job --- .github/workflows/daily-wpt-fyi.yml | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/.github/workflows/daily-wpt-fyi.yml b/.github/workflows/daily-wpt-fyi.yml index 41645a6a1a4df3..cfd1be52caf3be 100644 --- a/.github/workflows/daily-wpt-fyi.yml +++ b/.github/workflows/daily-wpt-fyi.yml @@ -96,31 +96,6 @@ jobs: echo "WPT_REPORT=$(pwd)/out/wpt/wptreport.json" >> $GITHUB_ENV fi - # undici WPT Runner - - name: Set env.UNDICI_VERSION - if: ${{ env.WPT_REPORT != '' }} - run: echo "UNDICI_VERSION=v$(jq -r '.version' < deps/undici/src/package.json)" >> $GITHUB_ENV - - name: Remove deps/undici - if: ${{ env.WPT_REPORT != '' }} - run: rm -rf deps/undici - - name: Checkout undici - if: ${{ env.WPT_REPORT != '' }} - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 - with: - repository: nodejs/undici - persist-credentials: false - path: deps/undici - clean: false - ref: ${{ env.UNDICI_VERSION }} - - name: Add undici WPTs to the report - if: ${{ env.WPT_REPORT != '' }} - run: | - rm -rf test/wpt/tests - mv ../../test/fixtures/wpt/ test/wpt/tests/ - npm install - npm run test:wpt || true - working-directory: deps/undici - # Upload artifacts - name: Clone report for upload if: ${{ env.WPT_REPORT != '' }}