Skip to content

fix: github action build #8

fix: github action build

fix: github action build #8

Workflow file for this run

name: Main
on: [push]
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.22.x' ]
steps:
- uses: actions/checkout@v4
- uses: .github/actions/env
with:
go-version: ${{ matrix.go-version }}
- name: Lint
run: make quality
- name: Build
run: |
npm i ./web
make build
- name: Test
run: |
make test