test ci
Some checks failed
/ build (push) Failing after 6s

This commit is contained in:
fred 2025-10-30 14:06:29 -07:00
parent bc926b9bba
commit e74d518f35
2 changed files with 27 additions and 0 deletions

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

@ -0,0 +1,26 @@
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
env:
NODE_ENV: production
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

1
.gitignore vendored
View file

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