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 b6670f7 commit 2e2486eCopy full SHA for 2e2486e
.github/workflows/build.yaml
@@ -37,6 +37,10 @@ jobs:
37
echo "command=install" >> $GITHUB_OUTPUT
38
echo "runner=yarn" >> $GITHUB_OUTPUT
39
exit 0
40
+ elif [ -f "${{ github.workspace }}/pnpm-lock.yaml" ]; then
41
+ echo "manager=pnpm" >> $GITHUB_OUTPUT
42
+ echo "command=install --frozen-lockfile" >> $GITHUB_OUTPUT
43
+ echo "runner=pnpm" >> $GITHUB_OUTPUT
44
elif [ -f "${{ github.workspace }}/package.json" ]; then
45
echo "manager=npm" >> $GITHUB_OUTPUT
46
echo "command=ci" >> $GITHUB_OUTPUT
0 commit comments