Merge branch 'wonkleio:dev' into pompypen #1
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
| on: | |
| push: | |
| paths: | |
| - web/** | |
| pull_request: | |
| paths: | |
| - web/** | |
| workflow_dispatch: | |
| name: Web CI | |
| jobs: | |
| ci: | |
| name: Web CI | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| # https://github.com/pnpm/action-setup | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10.23.0 # synced with devenv | |
| # https://github.com/actions/setup-node | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24.11.1 # synced with devenv | |
| cache: pnpm | |
| cache-dependency-path: web/pnpm-lock.yaml | |
| - run: cd web && pnpm install | |
| - run: cd web && pnpm lint | |
| - name: Create .env file | |
| run: cp ./web/.env.local.example ./web/.env.local | |
| - run: cd web && pnpm build:frontend |