We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c4af72 commit a1ed56eCopy full SHA for a1ed56e
.github/workflows/test-nodejs-nightly.yml
@@ -1,4 +1,4 @@
1
-name: Test NodeJS nightly build
+name: Test Node.js nightly build
2
3
on:
4
schedule:
@@ -23,3 +23,14 @@ jobs:
23
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
24
with:
25
persist-credentials: false
26
+ - name: Install latest Node.js
27
+ uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
28
+ with:
29
+ node-version: 25-nightly
30
+ - name: Test
31
+ run: |
32
+ # Install pnpm
33
+ npm install --global pnpm
34
+
35
+ # Install dependencies
36
+ pnpm install
0 commit comments