Thanks to visit codestin.com
Credit goes to github.com

Skip to content

feat(dashboard): Usage summary on workspace dashboard #374

feat(dashboard): Usage summary on workspace dashboard

feat(dashboard): Usage summary on workspace dashboard #374

name: Biome & Types
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
biome-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "22.18.0"
- name: Set up pnpm
uses: pnpm/action-setup@v3
with:
version: 9
- name: Install dependencies
run: pnpm install
- name: Run Biome lint
run: |
echo "::group::Running Biome Lint"
pnpm run format-and-lint
echo "✅ Biome lint passed!"
echo "::endgroup::"