Skip to content

Commit 861bf39

Browse files
committed
chore: adds nodejs setup in gha
1 parent 157d486 commit 861bf39

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/actions/setup-deps/action.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@ name: 'Setup dependencies'
33
runs:
44
using: "composite"
55
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)"
615
- uses: pnpm/action-setup@v4
716
with:
817
version: 10.26.1

0 commit comments

Comments
 (0)