Skip to content

🛠️ [CI] Fix failed lint workflow due to no build #271

🛠️ [CI] Fix failed lint workflow due to no build

🛠️ [CI] Fix failed lint workflow due to no build #271

Workflow file for this run

name: 🤖 Lint
on: [push]
jobs:
lint:
name: Lint the codebase
runs-on: ubuntu-latest
steps:
- name: 🗳️ Checkout repo
uses: actions/checkout@v4
- name: 🧰 Configure PNPM
uses: pnpm/action-setup@v2
- name: 🔧 Setup Node 20.x
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: pnpm
- name: 📦 Install dependencies
run: pnpm i
- name: 🎨 Lint
run: pnpm lint
- name: 💄 Prettier
run: pnpm format
- name: 🕵️ Type check
run: pnpm type-check