Skip to content

chore: improve package structure #12

chore: improve package structure

chore: improve package structure #12

Workflow file for this run

name: 🔍 Static Checks
on:
pull_request:
types: [opened, reopened, synchronize, ready_for_review]
workflow_dispatch:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref_name || github.ref }}
cancel-in-progress: true
jobs:
# Build job
static-checks:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 9
run_install: true
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Lint
run: pnpm lint