first PoC frontend #3

Merged
nihonium merged 20 commits from cicd into master 2025-10-09 17:48:23 +03:00
Showing only changes of commit cfc753bf84 - Show all commits

View file

@ -26,6 +26,7 @@ jobs:
- name: Build Go app
run: |
cd modules/backend
go mod tidy
go build -o nyanimedb .
tar -czvf nyanimedb-backend.tar.gz nyanimedb templates/
@ -38,13 +39,14 @@ jobs:
# Build frontend
- uses: actions/setup-node@v5
with:
node-version-file: 'modules/frontend/package.json'
cache: 'npm'
node-version-file: modules/frontend/package.json
cache: npm
cache-dependency-path: modules/frontend/package-lock.json
- name: Build frontend
run: |
cd modules/frontend
npm install
npm run build
tar -czvf nyanimedb-frontend.tar.gz dist/