Skip to content

chore: format

chore: format #10

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Node
uses: actions/setup-node@v4
with:
node-version: 22
- uses: pnpm/action-setup@v4.1.0
name: Install pnpm
with:
run_install: false
- name: Install deps
run: pnpm i --frozen-lockfile
- name: Build
run: pnpm run build
- name: Run ESLint & Prettier
run: pnpm run lint