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 edb2a8f commit 423592fCopy full SHA for 423592f
.github/actions/node-install/action.yaml
@@ -2,7 +2,7 @@ name: 'npm install and setup'
2
description: 'Setup node, authenticate github package repository and perform clean npm install'
3
4
inputs:
5
- node_version:
+ node-version:
6
description: 'Node.js version'
7
required: true
8
@@ -12,10 +12,10 @@ runs:
12
- name: 'Use Node.js'
13
uses: actions/setup-node@v6
14
with:
15
- node-version: '${{ inputs.node_version }}'
+ node-version: '${{ inputs.node-version }}'
16
17
- name: 'Install dependencies'
18
shell: bash
19
run: |
20
- ./scripts/set-github-token.sh
+ scripts/set-github-token.sh
21
npm ci
0 commit comments