relay/.gitea/workflows/build.yaml
Corban-Lee 40a0211609
Some checks failed
Build / build (push) Failing after 43s
build(api): include database in test build process
2025-05-01 14:20:50 +01:00

27 lines
435 B
YAML

name: Build
run-name: ${{ gitea.actor }} is building
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Dependencies
run: npm i
- name: Create database file
run: npm run db:push
- name: Build Dist
run: npm run build