2023-05-28 17:42:19 +00:00
|
|
|
name: Run tests
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
name: Run tests
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
2023-05-28 17:46:36 +00:00
|
|
|
matrix:
|
|
|
|
go-version: ["1.18", "1.19", "1.20"]
|
2023-05-28 17:42:19 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
2023-05-28 17:48:13 +00:00
|
|
|
- uses: pnpm/action-setup@v2
|
|
|
|
|
2023-05-28 17:46:36 +00:00
|
|
|
- name: Set up Node
|
|
|
|
uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version: 16
|
|
|
|
cache: 'pnpm'
|
|
|
|
cache-dependency-path: frontend/pnpm-lock.yaml
|
|
|
|
|
|
|
|
- name: Build frontend
|
|
|
|
run: |
|
|
|
|
cd frontend
|
|
|
|
pnpm install --frozen-lockfile
|
|
|
|
pnpm run build
|
|
|
|
|
2023-05-28 17:42:19 +00:00
|
|
|
- name: Set up Go
|
|
|
|
uses: actions/setup-go@v4
|
|
|
|
with:
|
|
|
|
go-version: ${{ matrix.go-version }}
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: go build .
|
|
|
|
|
|
|
|
- name: Test
|
2023-05-28 17:46:36 +00:00
|
|
|
run: go test ./...
|