recipe_app/.forgejo/workflows/ci.yml
fred 4b56fc78ec
All checks were successful
/ build (push) Successful in 29s
build script for ci
2025-10-30 14:48:00 -07:00

26 lines
464 B
YAML

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