From c9ebe0b2774b3f0666710aabf29f8b82203e3737 Mon Sep 17 00:00:00 2001 From: Eric Follana Date: Tue, 17 Sep 2024 13:31:58 +0200 Subject: [PATCH] Fixed GitHub action for the tests --- .github/workflows/tests.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 7ef841c..4aa5964 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -12,7 +12,7 @@ jobs: name: Tests strategy: matrix: - node: [10, 12] + node: [18, 20, 22] os: [windows-2016, ubuntu-16.04, ubuntu-18.04, macOS-latest] arch: [x86, x64] exclude: @@ -24,13 +24,13 @@ jobs: arch: x86 runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@master + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node }} - uses: implausible/setup-node@feature/expose-architecture-override + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node }} - node-arch: ${{ matrix.arch }} + architecture: ${{ matrix.arch }} - run: yarn