recipe_app/.forgejo/workflows/ci.yml
fred e1c9d1d21d
Some checks failed
/ build (push) Failing after 1m14s
test ci
2025-10-30 13:57:01 -07:00

24 lines
456 B
YAML

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