Skip to content

Merge branch 'main' into ci/jsr #269

Merge branch 'main' into ci/jsr

Merge branch 'main' into ci/jsr #269

Workflow file for this run

name: Test
on: [pull_request, push]
jobs:
typographical-errors:
name: Typographical errors
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Scan for typographical errors
uses: crate-ci/typos@master
style:
name: Styling
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: biomejs/setup-biome@v2
- name: Run Biome
run: biome ci --reporter=github
typescript:
name: TypeScript
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
uses: pnpm/action-setup@v4
with:
version: 9.14.2
run_install: |
- args: [--frozen-lockfile]
- name: Validate TypeScript
run: pnpm run test