Skip to content
This repository was archived by the owner on Aug 21, 2026. It is now read-only.

Bump eslint-config-prettier from 9.1.2 to 10.1.8 #80

Bump eslint-config-prettier from 9.1.2 to 10.1.8

Bump eslint-config-prettier from 9.1.2 to 10.1.8 #80

Workflow file for this run

name: CI
on: push
jobs:
test:
name: Lint, typecheck
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "pnpm"
- name: Install
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm lint
- name: Typecheck
run: pnpm typecheck