Skip to content

Commit 263115a

Browse files
committed
FIXUP
1 parent 753db48 commit 263115a

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

.github/workflows/nodejs-16.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,17 @@ on:
77
branches: [master]
88

99
jobs:
10-
build:
10+
test:
1111
runs-on: ubuntu-latest
1212

1313
steps:
1414
- uses: actions/checkout@v4
1515
- name: Use Node.js
1616
uses: actions/setup-node@v4
1717
with:
18-
node-version: '16.x'
18+
node-version: 16
1919
- run: npm install
20+
- run: npm run ci
2021
- run: npm run prepublishOnly
2122
- run: node -v
2223
- run: npm run test-node16

.github/workflows/nodejs.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
fail-fast: false
5050
matrix:
5151
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
52-
node: ['16', '18', '20', '22', '24']
52+
node: ['18', '20', '22', '24']
5353

5454
name: Test (${{ matrix.os }}, ${{ matrix.node }})
5555
runs-on: ${{ matrix.os }}
@@ -58,6 +58,9 @@ jobs:
5858
group: test-${{ github.workflow }}-#${{ github.event.pull_request.number || github.head_ref || github.ref }}-(${{ matrix.os }}, ${{ matrix.node }})
5959
cancel-in-progress: true
6060

61+
permissions:
62+
id-token: write
63+
6164
steps:
6265
- name: Checkout repository
6366
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6

0 commit comments

Comments
 (0)