Skip to content

style: align Clerk auth UI to Figma brand designs #19

style: align Clerk auth UI to Figma brand designs

style: align Clerk auth UI to Figma brand designs #19

Workflow file for this run

name: Lint & Type (biome, tsc)
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
on:
# Triggers: PR opened, updated (new commits), or reopened
# 1. Runs on remote GitHub Actions server (fresh environment, not local cache)
# 2. Required to pass before PR can be merged to main (enforced by branch protection)
pull_request:
branches: [main]
jobs:
lint-type:
name: Run Lint & Type Checks
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
# Step: Checkout code
- uses: actions/checkout@v6
# Step: Setup Node.js
- uses: actions/setup-node@v6
with:
node-version: 'lts/*'
cache: 'npm'
# Step: Install dependencies
- name: Install dependencies
run: npm ci
# Step: Run Biome checks
- name: Run Biome lint & format check
run: npx @biomejs/biome ci --error-on-warnings
# Step: Run TypeScript checks
- name: Run TypeScript type check
run: npx tsc --noEmit --pretty