From 221d0b81da4ecaa3489edbc158376fec52ca75eb Mon Sep 17 00:00:00 2001 From: Ben McCann <322311+benmccann@users.noreply.github.com> Date: Sun, 6 Oct 2024 06:36:46 -0700 Subject: [PATCH] chore: update CI to run Node 22 in place of Node 12 (#195) * chore: update CI to run Node 22 in place of Node 12 * fix CI --- .github/workflows/ci.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d4a9e6ee..17c3ff00 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,11 +8,11 @@ jobs: fail-fast: false matrix: node: - - '12' - '14' - '16' - '18' - '20' + - '22' platform: - ubuntu-latest - windows-latest @@ -23,13 +23,11 @@ jobs: steps: - name: Checkout Commit - uses: actions/checkout@v1 + uses: actions/checkout@v4 - name: Setup Node - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node }} - - name: checkout main - run: git branch -f main origin/main - name: Install pnpm uses: pnpm/action-setup@v4.0.0 with: