Skip to content

feat: use pnpm

feat: use pnpm #2027

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
env:
DISCORD_SNOWFLAKE: ${{ vars.DISCORD_SNOWFLAKE }}
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 5
permissions:
contents: read
pull-requests: write
steps:
- uses: actions/[email protected]
- uses: pnpm/action-setup@v4
- uses: actions/[email protected]
with:
node-version-file: ".nvmrc"
cache: "pnpm"
- name: Install dependencies
run: pnpm install --prefer-offline
- name: Run build
run: pnpm build
- name: Run tests
run: pnpm run test
- name: Report Coverage
if: always()
uses: davelosert/vitest-coverage-report-action@v2