Skip to content

Infrastructure Upgrade: PNPM Migration (#5) #5

Infrastructure Upgrade: PNPM Migration (#5)

Infrastructure Upgrade: PNPM Migration (#5) #5

Workflow file for this run

name: Tests
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 10
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- run: pnpm audit
- run: pnpm build
- run: pnpm test