P4: FLB temporal stability rules out the Angelini confound #10
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| build: | |
| name: typecheck + build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| # Installs the pnpm version pinned in package.json "packageManager". | |
| - uses: pnpm/action-setup@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 22 | |
| cache: pnpm | |
| - run: pnpm install --frozen-lockfile | |
| - run: pnpm typecheck | |
| - run: pnpm build | |
| docker: | |
| name: docker build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: docker/setup-buildx-action@v4 | |
| # Builds the production image exactly as Coolify does — no push. | |
| - uses: docker/build-push-action@v7 | |
| with: | |
| context: . | |
| push: false | |
| tags: template-web-coolify-light:ci | |
| cache-from: type=gha | |
| cache-to: type=gha,mode=max |