Skip to content

feat: better notifications #12

feat: better notifications

feat: better notifications #12

Workflow file for this run

name: lint
on:
push:
branches: [main]
pull_request:
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: jdx/mise-action@v2
- name: Install web dependencies
working-directory: web
run: pnpm install --frozen-lockfile
- name: Format
run: mise run format
- name: Fail if formatting changed files
run: git diff --exit-code
- name: Lint
run: mise run lint
- name: Type-check
run: mise run check