We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c972a9 commit 85f0878Copy full SHA for 85f0878
1 file changed
.github/workflows/verify.yml
@@ -1,26 +1,27 @@
1
name: verify
2
+
3
on:
4
push:
5
branches: [main]
6
pull_request:
- branches: [main]
7
8
+env:
9
+ FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
10
11
jobs:
12
verify:
- runs-on: ubuntu-24.04
- env:
- TZ: UTC
- LC_ALL: C.UTF-8
13
- LANG: C.UTF-8
14
- NO_COLOR: "1"
+ runs-on: ubuntu-latest
15
steps:
16
- - name: Checkout
17
- uses: actions/checkout@v4
18
- - name: Setup Node
19
- uses: actions/setup-node@v4
+ - uses: actions/checkout@v4
+ - uses: actions/setup-node@v4
20
with:
21
- node-version: 20.11.0
22
- cache: npm
23
- - name: Install
24
- run: npm ci
25
- - name: Verify
26
- run: npm test
+ node-version: '24.11.1'
+ - run: |
+ if [ -f package-lock.json ]; then
+ npm install --package-lock-only
+ fi
27
+ - run: node run-vectors.cjs verify
0 commit comments