From a4ce005025c467112b5fca0a98e0370e5ff3b596 Mon Sep 17 00:00:00 2001 From: Amin Yahyaabadi Date: Wed, 23 Oct 2024 02:09:12 -0700 Subject: [PATCH] ci: test on LTS versions of Nodejs --- .github/workflows/CI.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 99df782..bfb8609 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -5,7 +5,6 @@ on: jobs: Test: - if: "!contains(github.event.head_commit.message, '[skip ci]')" runs-on: ${{ matrix.os }} strategy: fail-fast: false @@ -15,15 +14,15 @@ jobs: - macos-latest - windows-latest node_version: - - 10 - - 12 - 14 + - 20 + - 22 architecture: - x64 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v4 with: node-version: ${{ matrix.node_version }} architecture: ${{ matrix.architecture }}