Skip to content

feat: init readme

feat: init readme #46

Workflow file for this run

name: 'Code quality'
on:
pull_request:
types:
- opened
- synchronize
- reopened
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint_and_typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: ./.github/actions/install
- run: pnpm typecheck
- run: pnpm lint
- run: pnpm prettier -c .