Skip to content

feat: initial commit #1

feat: initial commit

feat: initial commit #1

Workflow file for this run

name: build
on:
push:
branches: [main]
pull_request:
jobs:
server:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: jdx/mise-action@v2
- name: Build server
working-directory: server
run: go build ./...
- name: Test server
working-directory: server
run: go test ./...
web:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: jdx/mise-action@v2
- name: Install web dependencies
working-directory: web
run: pnpm install --frozen-lockfile
- name: Build web
working-directory: web
run: pnpm build