Skip to content

Bump actions/checkout from 5 to 6 in /.github/workflows #130

Bump actions/checkout from 5 to 6 in /.github/workflows

Bump actions/checkout from 5 to 6 in /.github/workflows #130

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: ["*"]
paths-ignore:
- "docs/**"
- ".vscode/**"
- "README.md"
- ".gitignore"
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v4
with:
version: 10
- uses: actions/setup-node@v6
with:
node-version: 23.x
cache: pnpm
- run: pnpm install
- run: pnpm run typecheck
- run: pnpm run build && find ./dist -type f | sort
- run: pnpm run jsr:publish --dry-run
test:
runs-on: ubuntu-latest
strategy:
matrix:
type: [basic]
steps:
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v4
with:
version: 10
- uses: actions/setup-node@v6
with:
node-version: 23.x
cache: pnpm
- run: pnpm install
- run: pnpm run test:${{ matrix.type }}
- run: pnpm run test:${{ matrix.type }} --trace-warnings
if: ${{ failure() }}