Skip to content

Commit 85f0878

Browse files
author
Michael John Tilk
committed
Pin actions runtime to Node 24
1 parent 5c972a9 commit 85f0878

1 file changed

Lines changed: 18 additions & 17 deletions

File tree

.github/workflows/verify.yml

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,27 @@
11
name: verify
2+
23
on:
34
push:
45
branches: [main]
56
pull_request:
6-
branches: [main]
7+
8+
env:
9+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
10+
711
jobs:
812
verify:
9-
runs-on: ubuntu-24.04
10-
env:
11-
TZ: UTC
12-
LC_ALL: C.UTF-8
13-
LANG: C.UTF-8
14-
NO_COLOR: "1"
13+
runs-on: ubuntu-latest
14+
1515
steps:
16-
- name: Checkout
17-
uses: actions/checkout@v4
18-
- name: Setup Node
19-
uses: actions/setup-node@v4
16+
- uses: actions/checkout@v4
17+
18+
- uses: actions/setup-node@v4
2019
with:
21-
node-version: 20.11.0
22-
cache: npm
23-
- name: Install
24-
run: npm ci
25-
- name: Verify
26-
run: npm test
20+
node-version: '24.11.1'
21+
22+
- run: |
23+
if [ -f package-lock.json ]; then
24+
npm install --package-lock-only
25+
fi
26+
27+
- run: node run-vectors.cjs verify

0 commit comments

Comments
 (0)