Release v0.9.8 #50
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
| # Next.js CI — runs only when files under web/ change (add your app at ./web). | |
| # To use the repo root instead, remove defaults.run.working-directory and adjust cache paths. | |
| name: Next.js | |
| on: | |
| push: | |
| branches: [develop] | |
| paths: | |
| - "web/**" | |
| pull_request: | |
| branches: [develop, main] | |
| paths: | |
| - "web/**" | |
| permissions: | |
| contents: read | |
| defaults: | |
| run: | |
| working-directory: web | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: latest | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "24" | |
| cache: pnpm | |
| cache-dependency-path: web/pnpm-lock.yaml | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Lint | |
| run: pnpm run --if-present lint | |
| - name: Build | |
| run: pnpm run build | |
| - name: Test | |
| run: pnpm run --if-present test |