Skip to content

chore: formatting

chore: formatting #97

Workflow file for this run

name: Lint and Test
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Use Node.js 22.x
uses: actions/setup-node@v3
with:
node-version: 22.x
cache: 'pnpm'
- run: pnpm install
- run: pnpm run lint --max-warnings=20
- run: pnpm run test --forceExit