From f418586d70d588eb73980a86131623b6c5d39f2f Mon Sep 17 00:00:00 2001 From: Robert Kieffer Date: Sun, 21 Jul 2024 12:20:18 -0700 Subject: [PATCH] chore: remove node v22 from matrix --- .github/workflows/ci.yml | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 92f1a7af..1b6172a7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,11 +10,6 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - # https://github.com/actions/setup-node/issues/480#issuecomment-1915448139 - - name: Enable Corepack - run: corepack enable - - name: Use Node.js uses: actions/setup-node@v4 with: @@ -29,14 +24,9 @@ jobs: strategy: fail-fast: false matrix: - node-version: [16.x, 18.x, 20.x, 22.x] + node-version: [16.x, 18.x, 20.x] steps: - uses: actions/checkout@v4 - - # https://github.com/actions/setup-node/issues/480#issuecomment-1915448139 - - name: Enable Corepack - run: corepack enable - - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v4 with: