Skip to content

Commit 423592f

Browse files
committed
debug
1 parent edb2a8f commit 423592f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/actions/node-install/action.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: 'npm install and setup'
22
description: 'Setup node, authenticate github package repository and perform clean npm install'
33

44
inputs:
5-
node_version:
5+
node-version:
66
description: 'Node.js version'
77
required: true
88

@@ -12,10 +12,10 @@ runs:
1212
- name: 'Use Node.js'
1313
uses: actions/setup-node@v6
1414
with:
15-
node-version: '${{ inputs.node_version }}'
15+
node-version: '${{ inputs.node-version }}'
1616

1717
- name: 'Install dependencies'
1818
shell: bash
1919
run: |
20-
./scripts/set-github-token.sh
20+
scripts/set-github-token.sh
2121
npm ci

0 commit comments

Comments
 (0)