Skip to content

Commit

Permalink
Fixed GitHub action for the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ericf-axosoft committed Sep 17, 2024
1 parent 1562f32 commit c9ebe0b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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

Expand Down

0 comments on commit c9ebe0b

Please sign in to comment.