From b4ba03953fce31e529dc941fd2215eab415a8b84 Mon Sep 17 00:00:00 2001 From: filmaj Date: Sun, 6 Apr 2025 10:22:22 -0400 Subject: [PATCH] test against node 22, remove conditionals around node 16 from github action workflow file --- .github/workflows/build.yml | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ff5a295..756ef79 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,7 +15,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - node-version: [ 16.x, 18.x, 20.x, 22.x ] + node-version: [ 18.x, 20.x, 22.x ] os: [ windows-latest, ubuntu-latest, macOS-latest ] # Go @@ -40,7 +40,7 @@ jobs: - name: Set up Ruby uses: ruby/setup-ruby@v1 with: - ruby-version: '2.7' + ruby-version: '3.3' - name: Set up bundle run: | @@ -67,15 +67,7 @@ jobs: npm install pip3 install -r requirements.txt - - name: Test (Node.js <= 16.x) - if: matrix.node-version <= '16.x' - run: npm run test:nolint - env: - CI: true - CI_OS: ${{ matrix.os }} - - name: Test - if: matrix.node-version > '16.x' run: npm test env: CI: true