Skip to content

Commit

Permalink
Test: Add Node.js v21 and update GitHub Actions (prebuild#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss authored Aug 28, 2024
1 parent 2c8bd26 commit 7a458c7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node: [16, 18, 20]
node: [18, 20, 22, latest] # https://nodejs.org/en/about/previous-releases
runs-on: ${{ matrix.os }}
name: ${{ matrix.os }} / Node ${{ matrix.node }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Use node ${{ matrix.node }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Install
Expand Down

0 comments on commit 7a458c7

Please sign in to comment.