test ci
Some checks failed
/ build (push) Failing after 1m14s

This commit is contained in:
fred 2025-10-30 13:57:01 -07:00
parent bc926b9bba
commit e1c9d1d21d
2 changed files with 25 additions and 0 deletions

24
.forgejo/workflows/ci.yml Normal file
View file

@ -0,0 +1,24 @@
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