From 1dd6203d695a3568fece43bf3f71a8c9d158915a Mon Sep 17 00:00:00 2001 From: Justin Stayton Date: Mon, 13 May 2024 09:45:53 -0400 Subject: [PATCH] Add Node.js v22 to CI matrix --- .github/workflows/ci.yml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b7c2699..d0e2bc9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 }}