From a33b63aea9d7b79fe6b0b29ecb7ab185888a91a6 Mon Sep 17 00:00:00 2001 From: Lewis Steele Date: Fri, 16 Aug 2024 17:08:03 +0100 Subject: [PATCH] Run build on node 22 --- .github/workflows/build.yml | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 73a017a..ca7450c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,19 +8,12 @@ on: jobs: build: - 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 + - uses: actions/setup-node@v4 with: - node-version: ${{ matrix.node-version }} + node-version: 22 cache: 'npm' - run: npm ci +