chore(deps-dev): bump @tailwindcss/vite from 4.0.8 to 4.0.9 #6
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 🔍 PR Code Validation | |
concurrency: | |
group: ${{ github.repository }}-${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "app/**" | |
- "workers/**" | |
- "*.js" | |
- "*.ts" | |
- "*.tsx" | |
- "package.json" | |
- "pnpm-lock.yaml" | |
jobs: | |
lint: | |
name: ⬣ Biome lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: biomejs/setup-biome@v2 | |
- run: biome ci . --reporter=github | |
typecheck: | |
needs: lint | |
name: 🔎 Type check | |
runs-on: ubuntu-latest | |
steps: | |
- name: 📥 Checkout | |
uses: actions/checkout@v4 | |
- name: 📦 Setup pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 9.15.5 | |
- name: 🟢 Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: "pnpm" | |
- name: 📎 Install dependencies | |
run: pnpm install | |
- name: 🔧 Generate Types | |
run: pnpm typegen | |
- name: 📝 Run type check | |
run: pnpm typecheck |