Skip to content

main -> prod #30

main -> prod

main -> prod #30

Workflow file for this run

---
name: Build
# yamllint disable-line rule:truthy
on:
push:
branches:
- dev
pull_request:
types:
- opened
- reopened
- synchronize
workflow_dispatch:
concurrency:
group: build-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
build-nextjs:
name: 🏗️ Build
runs-on: ubuntu-latest
steps:
- name: ⤵️ Check out code from GitHub
uses: actions/checkout@v4.2.2
with:
ref: ${{ github.head_ref }}
- name: 🏗️ Setup PNPM
uses: ./.github/actions/setup-app
with:
cache-build: true
- name: 🏗️ Build
run: pnpm build
env:
CI: true
NODE_ENV: production
SKIP_ENV_VALIDATION: true
TURBO: 1 # Use turbopack for faster builds