8 lines
179 B
Bash
8 lines
179 B
Bash
#!/bin/sh
|
|
set -eu
|
|
|
|
test -z "$(gofmt -l cmd internal)"
|
|
go vet ./cmd/... ./internal/...
|
|
go test -race ./cmd/... ./internal/...
|
|
npm --prefix web run check
|
|
npm --prefix web run build
|