chore: release v1.0.9 #5
This file contains hidden or 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
| # ============================================================================= | |
| # 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 |