Skip to content
Closed
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
20 changes: 10 additions & 10 deletions .github/workflows/nftopia-backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,15 @@ jobs:
exit 1
fi

# ----------------------------------
# Setup pnpm if needed (MOVED UP)
# ----------------------------------
- name: Setup pnpm
if: steps.detect.outputs.manager == 'pnpm'
uses: pnpm/action-setup@v3
with:
version: 10

# ----------------------------------
# Setup Node
# ----------------------------------
Expand All @@ -60,15 +69,6 @@ jobs:
nftopia-backend/pnpm-lock.yaml
nftopia-backend/package-lock.json

# ----------------------------------
# Setup pnpm if needed
# ----------------------------------
- name: Setup pnpm
if: steps.detect.outputs.manager == 'pnpm'
uses: pnpm/action-setup@v3
with:
version: 10

# ----------------------------------
# Install Dependencies
# ----------------------------------
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
- name: Run tests (if available)
run: |
if [ "${{ steps.detect.outputs.manager }}" = "pnpm" ]; then
pnpm run test --if-present
pnpm run --if-present test
else
npm run test --if-present
fi
Expand Down
1 change: 1 addition & 0 deletions nftopia-backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
"@nestjs/typeorm": "^11.0.0",
"@nestjs/websockets": "^11.1.17",
"@types/cron": "^2.0.1",
"cron": "^3.1.7",
"arweave": "^1.15.7",
"cache-manager": "^7.2.8",
"cache-manager-redis-store": "^3.0.1",
Expand Down
Loading
Loading