Skip to content

Refine blog editorial styles #1625

Refine blog editorial styles

Refine blog editorial styles #1625

Workflow file for this run

name: ⬣ Lint
on:
push:
branches:
- main
- dev
- stage
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
name: ⬣ Lint
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v6
- name: 📦 Setup pnpm
uses: pnpm/action-setup@v5
- name: ⎔ Setup node
uses: actions/setup-node@v6
with:
node-version: 24
cache: pnpm
- name: 📥 Install deps
run: pnpm install --frozen-lockfile
- name: 🔬 Lint
run: pnpm run lint && pnpm run typecheck