Skip to content

doc: add GitHub Actions workflow for Hugo site deployment #56

doc: add GitHub Actions workflow for Hugo site deployment

doc: add GitHub Actions workflow for Hugo site deployment #56

Workflow file for this run

name: Tests
on:
push:
pull_request:
jobs:
test:
name: Run on Ubuntu
runs-on: ubuntu-latest
steps:
- name: Clone the code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
cache-dependency-path: web/package-lock.json
- name: Build Web UI
run: make build-web
- name: Running Tests
run: |
go mod download
make test