recipe_app/.forgejo/workflows/ci.yml
fred 89a7ea90c4
Some checks failed
/ build (push) Failing after 10s
test ci
2025-10-30 14:25:21 -07:00

26 lines
497 B
YAML

on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
env:
NODE_ENV: production
container:
image: node:22-bullseye
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Build Frontend
working-directory: frontend
run: |
npm install
npm run production
- name: Build Backend
working-directory: backend
run: |
npm install
npm run production