Skip to content

Commit

Permalink
Allow consumer to specify Node version #2
Browse files Browse the repository at this point in the history
Signed-off-by: macdonst <[email protected]>
  • Loading branch information
macdonst committed May 19, 2022
1 parent 9140a15 commit a870b93
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ inputs:
use_lock_file:
required: false
default: true
node-version:
required: false
default: 14
runs:
using: "composite"
steps:
Expand All @@ -16,7 +19,7 @@ runs:
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 14
node-version: ${{ inputs.node-version }}

- name: Env
shell: bash
Expand Down

0 comments on commit a870b93

Please sign in to comment.