Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
MODSetter committed Aug 12, 2024
1 parent 8624ebc commit 2e3ce92
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/.github/workflows/nextjs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ jobs:
- name: Detect package manager
id: detect-package-manager
run: |
if [ -f "${{ github.workspace }}/yarn.lock" ]; then
if [ -f "/home/runner/work/SurfSense/yarn.lock" ]; then
echo "manager=yarn" >> $GITHUB_OUTPUT
echo "command=install" >> $GITHUB_OUTPUT
echo "runner=yarn" >> $GITHUB_OUTPUT
exit 0
elif [ -f "${{ github.workspace }}/package.json" ]; then
elif [ -f "$/home/runner/work/SurfSense/package.json" ]; then
echo "manager=pnpm" >> $GITHUB_OUTPUT
echo "command=install --frozen-lockfile" >> $GITHUB_OUTPUT
echo "runner=pnpx" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 2e3ce92

Please sign in to comment.