Skip to content

chore: release v1.0.9 #5

chore: release v1.0.9

chore: release v1.0.9 #5

Workflow file for this run

# =============================================================================
# CI - Lint & Type Check
# =============================================================================
# Runs on every push and pull request to ensure code quality.
# =============================================================================
name: CI
on:
pull_request:
branches: [main, dev]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint-and-typecheck:
name: Lint & Type Check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node.js and pnpm
uses: ./.github/actions/setup-node-pnpm
- name: Run ESLint
run: pnpm lint
- name: Run TypeScript check
run: pnpm typecheck
tests:
name: Tests
uses: ./.github/workflows/tests.yml
secrets: inherit