Skip to content

Phase 2a: full paper draft (manuscript prose) #5

Phase 2a: full paper draft (manuscript prose)

Phase 2a: full paper draft (manuscript prose) #5

Workflow file for this run

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