From 96040ce6052276b8e55e5471947f3458336b47bd Mon Sep 17 00:00:00 2001 From: Daniel Hensby Date: Wed, 24 Jul 2024 15:42:25 +0100 Subject: [PATCH 1/2] ci: add NodeJS 22 to test matrix --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 37b8e220..c49fe286 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -41,7 +41,7 @@ jobs: needs: [lint] strategy: matrix: - node: [16, 18, 20] + node: [16, 18, 20, 22] steps: - name: Checkout ${{ matrix.node }} uses: actions/checkout@v3 From 8d9e4d8f763173d335461f2979c39a3e3b017448 Mon Sep 17 00:00:00 2001 From: Daniel Hensby Date: Wed, 24 Jul 2024 15:42:49 +0100 Subject: [PATCH 2/2] docs: fix comments in workflows --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c49fe286..3792dd14 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -6,11 +6,11 @@ name: Tests on: push: branches: - - master # allthough master is push protected we still keep it + - master # although master is push protected we still keep it - development pull_request: # runs on all PR branches-ignore: - - release-* # on release we run an extended workflow so no need for this + - release-* # on release, we run an extended workflow so no need for this jobs: lint: