Skip to content

feat(shadcn): Add shadcn package and build steps #42

feat(shadcn): Add shadcn package and build steps

feat(shadcn): Add shadcn package and build steps #42

Workflow file for this run

name: Lint and Format Check
on:
push:
branches:
- "@invertase/v7-development"
pull_request:
jobs:
lint:
name: Lint and Format Check
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run ESLint check
run: pnpm run lint:check
- name: Run Prettier check
run: pnpm run format:check