Skip to content

Commit

Permalink
ci: include tests for node 22 version (#170)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jayllyz committed May 21, 2024
1 parent becc420 commit bcfc498
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,22 @@ on:
pull_request:
branches: ['*']

permissions:
contents: read
pull-requests: read

jobs:
ci:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x, 19.x, 20.x]
node-version: [18.x, 19.x, 20.x, 22.x]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --frozen-lockfile
Expand Down

0 comments on commit bcfc498

Please sign in to comment.