Skip to content

Commit

Permalink
Add Node.js v22 to CI matrix (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
jstayton committed May 13, 2024
1 parent 76f3c2b commit 3d33412
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
name: CI

on: push
on:
push:
workflow_dispatch:

jobs:
lint-and-test:
lint-test:
name: Lint & test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['18.x', '20.x']
node-version: ['18.x', '20.x', '22.x']
steps:
- uses: actions/checkout@v4
- name: Setup Node.js v${{ matrix.node-version }}
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Node.js v${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
Expand Down

0 comments on commit 3d33412

Please sign in to comment.