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 157d486 commit 861bf39Copy full SHA for 861bf39
.github/actions/setup-deps/action.yml
@@ -3,6 +3,15 @@ name: 'Setup dependencies'
3
runs:
4
using: "composite"
5
steps:
6
+ - uses: actions/setup-node@v6
7
+ with:
8
+ node-version: 24
9
+ package-manager-cache: false
10
+ - name: Node & npm versions
11
+ shell: bash
12
+ run: |
13
+ echo "Node version: $(node -v)"
14
+ echo "npm version: $(npm -v)"
15
- uses: pnpm/action-setup@v4
16
with:
17
version: 10.26.1
0 commit comments