Files
nodarium/.gitea/scripts/ci-checks.sh
Max Richter 1dae472253
Some checks failed
🚀 Lint & Test & Deploy / release (push) Failing after 3m14s
ci: add a git.json metadata file during build
2026-02-06 11:48:12 +01:00

17 lines
274 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
pnpm lint &
LINT_PID=$!
pnpm format:check &
FORMAT_PID=$!
pnpm check &
TYPE_PID=$!
xvfb-run --auto-servernum --server-args="-screen 0 1280x1024x24" pnpm test &
TEST_PID=$!
wait $LINT_PID
wait $FORMAT_PID
wait $TYPE_PID
wait $TEST_PID