setup ci
Some checks failed
/ build (push) Has been cancelled

This commit is contained in:
fred 2025-10-30 13:38:49 -07:00
parent bc926b9bba
commit b2e164f10e
2 changed files with 23 additions and 0 deletions

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

@ -0,0 +1,22 @@
on:
push:
branches:
- main
jobs:
build:
runs-on: docker
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

1
.gitignore vendored
View file

@ -2,6 +2,7 @@ db/
*/.env
.env*
todo
.forgejo/workflows/env
sqldumps/
logs/
dist/