From 66dfd2cea1cfaf01532c5b5ed5db47f458f69f73 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 5 Nov 2025 17:45:29 +0000 Subject: [PATCH 1/2] Initial plan From 2d6cee03b94d5b13484b2cbe244ee95c4cdb057f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 5 Nov 2025 17:48:35 +0000 Subject: [PATCH 2/2] Update e2e workflow to test on Node 18.0.0 and lts/* Co-authored-by: serhalp <1377702+serhalp@users.noreply.github.com> --- .github/workflows/e2e.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 31307b60..f104ab2a 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -7,6 +7,9 @@ on: jobs: e2e: runs-on: ubuntu-latest + strategy: + matrix: + node-version: ['18.0.0', 'lts/*'] steps: - name: Checkout uses: actions/checkout@v4 @@ -21,7 +24,7 @@ jobs: - name: Node uses: actions/setup-node@v4 with: - node-version: '22' + node-version: ${{ matrix.node-version }} - run: corepack enable - name: Install Deno @@ -42,6 +45,6 @@ jobs: - uses: actions/upload-artifact@v4 if: always() with: - name: blob-report + name: blob-report-${{ matrix.node-version }} path: blob-report/ retention-days: 30