Skip to content

Commit b4ba039

Browse files
committed
test against node 22, remove conditionals around node 16 from github action workflow file
1 parent ee6b702 commit b4ba039

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

.github/workflows/build.yml

+2-10
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ${{ matrix.os }}
1616
strategy:
1717
matrix:
18-
node-version: [ 16.x, 18.x, 20.x, 22.x ]
18+
node-version: [ 18.x, 20.x, 22.x ]
1919
os: [ windows-latest, ubuntu-latest, macOS-latest ]
2020

2121
# Go
@@ -40,7 +40,7 @@ jobs:
4040
- name: Set up Ruby
4141
uses: ruby/setup-ruby@v1
4242
with:
43-
ruby-version: '2.7'
43+
ruby-version: '3.3'
4444

4545
- name: Set up bundle
4646
run: |
@@ -67,15 +67,7 @@ jobs:
6767
npm install
6868
pip3 install -r requirements.txt
6969
70-
- name: Test (Node.js <= 16.x)
71-
if: matrix.node-version <= '16.x'
72-
run: npm run test:nolint
73-
env:
74-
CI: true
75-
CI_OS: ${{ matrix.os }}
76-
7770
- name: Test
78-
if: matrix.node-version > '16.x'
7971
run: npm test
8072
env:
8173
CI: true

0 commit comments

Comments
 (0)