From 7889c32be069d9da79617bc922effe0523a40d8b Mon Sep 17 00:00:00 2001 From: Mo Tarbin Date: Wed, 8 Jul 2026 14:13:18 -0400 Subject: [PATCH] fix: simplify Node.js setup in build workflow by removing version matrix --- .github/workflows/build.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5925ff7..5048ee6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,16 +9,12 @@ jobs: build: runs-on: ubuntu-latest - strategy: - matrix: - node-version: [20.x, 22.x] - steps: - uses: actions/checkout@v4 - - name: Use Node.js ${{ matrix.node-version }} + - name: Use Node.js 20 uses: actions/setup-node@v4 with: - node-version: ${{ matrix.node-version }} + node-version: 20.x cache: 'npm' - name: Install dependencies run: npm i