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 e5dd289 commit 56781b9Copy full SHA for 56781b9
action.yml
@@ -45,6 +45,10 @@ runs:
45
VERSION="latest"
46
echo "PACKAGE_MANAGER=npm" >> $GITHUB_ENV
47
echo "LOCKFILE=package-lock.json" >> $GITHUB_ENV
48
+ elif [ $(find "." -maxdepth 1 -name "bun.lock") ]; then
49
+ VERSION="latest"
50
+ echo "PACKAGE_MANAGER=bun" >> $GITHUB_ENV
51
+ echo "LOCKFILE=bun.lock" >> $GITHUB_ENV
52
elif [ $(find "." -maxdepth 1 -name "bun.lockb") ]; then
53
54
echo "PACKAGE_MANAGER=bun" >> $GITHUB_ENV
0 commit comments