Skip to content

Delete the banners (#1609) #1602

Delete the banners (#1609)

Delete the banners (#1609) #1602

Workflow file for this run

name: Server Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Checkout and setup Node
uses: ./.github/actions/checkout-and-setup
- name: Build UI
run: pnpm build:server
- uses: actions/setup-go@v3
with:
go-version-file: server/go.mod
cache-dependency-path: server/go.sum
cache: true
check-latest: true
- name: Set up Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.x'
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: build
working-directory: server
run: make install-utils build
- name: test
working-directory: server
run: make test