Skip to content

Commit 15eec56

Browse files
committed
ci: remove node 16 from ci
1 parent 6267e70 commit 15eec56

1 file changed

Lines changed: 17 additions & 17 deletions

File tree

.github/workflows/publish.yml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest
2323
strategy:
2424
matrix:
25-
node-version: [22.x, 24.x]
25+
node-version: [20.x, 22.x, 24.x]
2626
steps:
2727
- uses: actions/checkout@v4
2828
with:
@@ -33,21 +33,21 @@ jobs:
3333
node-version: ${{ matrix.node-version }}
3434
- run: npm install
3535
- run: npm run test
36-
test_16:
37-
runs-on: ubuntu-latest
38-
strategy:
39-
matrix:
40-
node-version: [16.x]
41-
steps:
42-
- uses: actions/checkout@v4
43-
with:
44-
fetch-depth: 0
45-
- name: Use Node.js ${{ matrix.node-version }}
46-
uses: actions/setup-node@v4
47-
with:
48-
node-version: ${{ matrix.node-version }}
49-
- run: npm install
50-
- run: npm run test:16
36+
# test_16:
37+
# runs-on: ubuntu-latest
38+
# strategy:
39+
# matrix:
40+
# node-version: [16.x]
41+
# steps:
42+
# - uses: actions/checkout@v4
43+
# with:
44+
# fetch-depth: 0
45+
# - name: Use Node.js ${{ matrix.node-version }}
46+
# uses: actions/setup-node@v4
47+
# with:
48+
# node-version: ${{ matrix.node-version }}
49+
# - run: npm install
50+
# - run: npm run test:16
5151
# test_legacy:
5252
# needs: [is_release]
5353
# if: ${{ needs.is_release.outputs.type == '::norelease::' }}
@@ -71,7 +71,7 @@ jobs:
7171
# npm run test:legacy;
7272
# done
7373
publish:
74-
needs: [is_release, test, test_16]
74+
needs: [is_release, test]
7575
if: ${{ needs.is_release.outputs.type == '::release::' }}
7676
runs-on: ubuntu-latest
7777
steps:

0 commit comments

Comments
 (0)