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 }}