Skip to content

chore: apply linting #756

chore: apply linting

chore: apply linting #756

Workflow file for this run

name: Test
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- run: corepack enable
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Lint
run: pnpm biome ci .
- name: Test
run: pnpm test
env:
CI: true
- name: Build
run: pnpm build