Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/actions/run-checks/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ runs:
pm=${INPUTS_PACKAGE_MANAGER}

# Parse JSON array of commands
readarray -t commands < <(echo '${INPUTS_COMMANDS}' | jq -r '.[]')
readarray -t commands < <(echo "${INPUTS_COMMANDS}" | jq -r '.[]')

if [ ${#commands[@]} -gt 0 ]; then
# Build the full command strings
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/node-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,7 @@ jobs:
with:
fetch-depth: 0
persist-credentials: false
clean: false

- name: Build (nx)
if: steps.check-build.outputs.exists-script != 'true' && steps.check-build.outputs.exists-nx-target == 'true'
Expand Down Expand Up @@ -419,6 +420,7 @@ jobs:
with:
fetch-depth: 0
persist-credentials: false
clean: false

- name: Build commands list
id: build-commands
Expand Down