ci: update labeler config to new changed-files syntax #33
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
| name: Frontend CI | |
| on: | |
| push: | |
| branches: [main] | |
| paths-ignore: | |
| - 'apps/docs/**' | |
| pull_request: | |
| branches: [main] | |
| paths-ignore: | |
| - 'apps/docs/**' | |
| concurrency: | |
| group: ci-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| quality: | |
| name: ${{ matrix.display }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node-version: ['lts/*'] | |
| include: | |
| - task: format:check | |
| display: Check formatting | |
| - task: lint | |
| display: Lint | |
| - task: typecheck | |
| display: Typecheck | |
| - task: test | |
| display: Test | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: pnpm/action-setup@v6 | |
| with: | |
| version: 12 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v7 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: 'pnpm' | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Run ${{ matrix.display }} | |
| run: pnpm run ${{ matrix.task }} |