Skip to content

Store signatures in backend database and record them during realizati… #249

Store signatures in backend database and record them during realizati…

Store signatures in backend database and record them during realizati… #249

Workflow file for this run

# Copyright 2024 The zb Authors
# SPDX-License-Identifier: MIT
name: Test
on:
push:
pull_request:
jobs:
cli:
name: Test CLI
runs-on: ${{matrix.os}}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
permissions:
contents: read
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version-file: internal/ui/package.json
- name: Build UI
run: go generate ./internal/ui
- name: Run tests
run: go test -mod=readonly -race ./...