Skip to content

chore: better discord notification #266

chore: better discord notification

chore: better discord notification #266

Workflow file for this run

name: Checks
on:
push:
branches:
- main
- staging
pull_request:
branches:
- main
- staging
jobs:
lint:
name: Lint and format
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- uses: pnpm/action-setup@v4
name: Install pnpm
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 24
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Lint
run: pnpm lint
- name: Format
run: pnpm format:check