[Feat] fe-ci 및 에이전트 문서 추가 #2
Workflow file for this run
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: FE CI | |
| on: | |
| pull_request: | |
| paths: | |
| - "web/**" | |
| - ".github/workflows/fe-ci.yml" | |
| push: | |
| branches: | |
| - main | |
| - develop | |
| paths: | |
| - "web/**" | |
| - ".github/workflows/fe-ci.yml" | |
| concurrency: | |
| group: fe-ci-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| defaults: | |
| run: | |
| working-directory: web | |
| jobs: | |
| web: | |
| name: web quality | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10 | |
| - name: Set up Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: pnpm | |
| cache-dependency-path: web/pnpm-lock.yaml | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Lint & format check | |
| run: pnpm exec biome ci . | |
| - name: Type check & build | |
| run: pnpm build |