- Update E2E test credentials to match actual seed users (user@veza.music, artist@veza.music, admin@veza.music, mod@veza.music) - Fix hardcoded "Suggested Accounts" in SuggestionsWidget with i18n key - Replace hardcoded amelie_dubois references with CONFIG.users.creator - Refactor auth, player, upload E2E tests for reliability - Add tmt test plans and scripts for CI integration - Simplify CI workflow Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
18 lines
372 B
Bash
Executable file
18 lines
372 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
REPO_ROOT=$(git rev-parse --show-toplevel)
|
|
BACKEND_DIR="$REPO_ROOT/veza-backend-api"
|
|
|
|
echo "Backend Lint (golangci-lint)"
|
|
|
|
cd "$BACKEND_DIR"
|
|
|
|
if ! command -v golangci-lint &>/dev/null; then
|
|
echo "Installing golangci-lint..."
|
|
go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
|
|
fi
|
|
|
|
golangci-lint run ./...
|
|
|
|
echo "Lint passed."
|