move v1 to v1 dir, add build workflow

This commit is contained in:
Alex Holliday
2025-09-23 11:59:02 -07:00
parent 0030394008
commit f945a27011
46 changed files with 136 additions and 64 deletions

23
.github/workflows/build-check.yml vendored Normal file
View File

@@ -0,0 +1,23 @@
name: Build Check (Server)
on:
pull_request:
workflow_dispatch:
jobs:
build-server:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 22
- name: Install server dependencies
working-directory: server
run: npm install
- name: Check server formatting
working-directory: server
run: npm run build