From dc5ef59b1d4cc5551f3e3e6278027d5588723f90 Mon Sep 17 00:00:00 2001 From: Jon <66625200+Kyro3400@users.noreply.github.com> Date: Fri, 23 Aug 2024 18:54:20 -0400 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0a694a6..e0f56e5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,17 +7,12 @@ jobs: runs-on: ubuntu-latest - strategy: - matrix: - node-version: [18.x, 20.x, 22.x] - # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ - steps: - uses: actions/checkout@v4 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v4 + - name: Setup Node with: - node-version: ${{ matrix.node-version }} + uses: actions/setup-node@v4 + node_version: '20.x' cache: 'npm' - run: npm i - run: npm run build