21 lines
504 B
YAML
Raw Normal View History

on: [push, pull_request]
name: Test
jobs:
test:
strategy:
matrix:
2025-02-09 19:17:44 +00:00
go-version: [1.23.x]
2025-02-11 22:03:24 +00:00
node-version: [22.x.x]
runs-on: ubuntu-latest
steps:
2025-02-09 19:17:44 +00:00
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
2025-02-11 22:03:24 +00:00
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
2025-02-09 19:17:44 +00:00
- uses: actions/checkout@v4
2025-02-11 22:01:12 +00:00
- run: cd web && yarn build
- run: go build ./cmd/lavender
- run: go test ./...