Pulse/.github/workflows/build-and-test.yml
2025-11-14 13:41:16 +00:00

62 lines
1.3 KiB
YAML

name: Build and Test
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build:
name: Frontend & Backend
runs-on: ubuntu-latest
env:
FRONTEND_DIR: frontend-modern
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: npm
cache-dependency-path: frontend-modern/package-lock.json
- name: Install frontend dependencies
working-directory: frontend-modern
run: npm ci
- name: Lint frontend
working-directory: frontend-modern
run: npm run lint
- name: Frontend unit tests
working-directory: frontend-modern
run: npm run test
- name: Type-check frontend
working-directory: frontend-modern
run: npm run type-check
- name: Build frontend bundle (with embed copy)
run: make frontend
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Go unit tests
run: go test ./...
- name: Build Pulse backend
run: go build ./cmd/pulse
- name: Build pulse-sensor-proxy
run: go build ./cmd/pulse-sensor-proxy