ci(fix): Set NODE_ENV in build push ui image to production #9
This file contains 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: Test pnpm build | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "frontend/**" | |
- ".github/workflows/test-pnpm-build.yml" | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "frontend/**" | |
- ".github/workflows/test-pnpm-build.yml" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "22" | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: "latest" | |
- name: Install dependencies | |
run: pnpm install | |
working-directory: ./frontend | |
- name: Build project | |
env: | |
NEXT_PUBLIC_API_URL: http://localhost:8000 | |
NEXT_PUBLIC_APP_URL: http://localhost:3000 | |
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY: "secret-clerk-publishable-key" | |
NEXT_PUBLIC_DISABLE_AUTH: "true" | |
NEXT_SERVER_API_URL: http://localhost:8000 | |
NODE_ENV: development | |
run: pnpm build | |
working-directory: ./frontend |