We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee6b702 commit b4ba039Copy full SHA for b4ba039
.github/workflows/build.yml
@@ -15,7 +15,7 @@ jobs:
15
runs-on: ${{ matrix.os }}
16
strategy:
17
matrix:
18
- node-version: [ 16.x, 18.x, 20.x, 22.x ]
+ node-version: [ 18.x, 20.x, 22.x ]
19
os: [ windows-latest, ubuntu-latest, macOS-latest ]
20
21
# Go
@@ -40,7 +40,7 @@ jobs:
40
- name: Set up Ruby
41
uses: ruby/setup-ruby@v1
42
with:
43
- ruby-version: '2.7'
+ ruby-version: '3.3'
44
45
- name: Set up bundle
46
run: |
@@ -67,15 +67,7 @@ jobs:
67
npm install
68
pip3 install -r requirements.txt
69
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
-
77
- name: Test
78
- if: matrix.node-version > '16.x'
79
run: npm test
80
env:
81
CI: true
0 commit comments