We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9bb7883 commit 35c2582Copy full SHA for 35c2582
2 files changed
.github/actions/setup-pnpm/action.yml
.github/actions/setup/action.yml
@@ -0,0 +1,25 @@
1
+name: 'Setup'
2
+description: 'Setup Node.js and PNPM for Socket CLI'
3
+
4
+inputs:
5
+ node-version:
6
+ description: 'Node.js version'
7
+ required: false
8
+ default: '22'
9
10
+runs:
11
+ using: 'composite'
12
+ steps:
13
+ - name: Setup Node.js
14
+ uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
15
+ with:
16
+ node-version: ${{ inputs.node-version }}
17
18
+ - name: Setup PNPM
19
+ uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0
20
21
+ version: '^10.16.0'
22
23
+ - name: Install dependencies
24
+ shell: bash
25
+ run: pnpm install
0 commit comments