Skip to content

Commit f66fcad

Browse files
perf(ci): use pnpx instead of npx
1 parent 7995acc commit f66fcad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/validate-renovate.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ jobs:
2323
ver="37.291.0"
2424
# pinned on exact version
2525
package="renovate@=$ver"
26-
echo "npx: $(npx --version)"
26+
echo "npx: $(pnpx --version)"
2727
echo "installing: $package..."
2828
export H="$(mktemp)"
2929
echo '{' >> "$H"
3030
# let's do main part, but avoid pipefail
31-
(npx --yes --package "$package" -- renovate-config-validator --strict || true)\
31+
(pnpx --yes --package "$package" -- renovate-config-validator --strict || true)\
3232
| ruby -e 'File.open(ENV[?H], ?a) {|r| while gets; puts $_; $> = r if $_.strip == "WARN: Config migration necessary" ;end; }'
3333
echo '}' >> "$H"
3434

0 commit comments

Comments
 (0)