Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#1] Support working-directory param in setup-node action #2

Merged
merged 1 commit into from
Aug 23, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ inputs:
required: false
default: 'yes'

nvmrc-custom-dir:
description: Directory within the github.workspace directory where to find the .nvmrc file (for the setup-node action).
required: false
default: ''

npm-ci-flags:
description: Additional arguments for the 'npm ci' command.
required: false
Expand Down Expand Up @@ -107,7 +112,7 @@ runs:
- uses: actions/setup-node@v3
if: ${{ inputs.setup-node == 'yes' }}
with:
node-version-file: '.nvmrc'
node-version-file: ${{ inputs.nvmrc-custom-dir && format('{0}/{1}', inputs.nvmrc-custom-dir, '.nvmrc') || '.nvmrc' }}

- name: Build frontend
if: ${{ inputs.setup-node == 'yes' }}
Expand Down