4f67dd6b0a
Forgejo Actions fired both `push` and `pull_request` events for the same commit when pushing to dev with an open PR — doubled CI runs on every PR commit (e.g. #182 and #183 on PR #24's HEAD `95d68e3`). Drop the push trigger entirely; PRs against main are the only quality gate that matters in this workflow (dev → PR → main, never direct push to main). Trade-off: direct pushes to dev with no open PR no longer get CI on their own. Acceptable — the moment the PR opens, the pull_request event fires and runs the same workflow.
69 lines
1.8 KiB
YAML
69 lines
1.8 KiB
YAML
name: test
|
|
|
|
# Lint + short unit tests. Integration tests needing Postgres/ffmpeg run
|
|
# locally via docker-compose; they should guard with testing.Short().
|
|
|
|
on:
|
|
# PRs against main are the gate. Direct pushes to dev no longer trigger
|
|
# CI on their own — opening a PR fires the pull_request event and gates
|
|
# the merge. Avoids the duplicate push+pull_request runs we were
|
|
# accumulating on every PR commit.
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: go-ci
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '22'
|
|
cache: 'npm'
|
|
cache-dependency-path: web/package-lock.json
|
|
|
|
- name: Install web deps
|
|
working-directory: web
|
|
run: npm ci
|
|
|
|
- name: Web build (populates web/build/ for go:embed)
|
|
working-directory: web
|
|
run: npm run build
|
|
|
|
- name: Web test (vitest)
|
|
working-directory: web
|
|
run: npm test
|
|
|
|
- name: Detect Go project
|
|
id: gomod
|
|
shell: bash
|
|
run: |
|
|
if [ -f go.mod ]; then
|
|
echo "present=true" >> "$GITHUB_OUTPUT"
|
|
else
|
|
echo "present=false" >> "$GITHUB_OUTPUT"
|
|
echo "::notice::No go.mod yet — Go steps will be skipped until the skeleton lands"
|
|
fi
|
|
|
|
- name: Toolchain versions
|
|
if: steps.gomod.outputs.present == 'true'
|
|
run: |
|
|
go version
|
|
golangci-lint --version
|
|
|
|
- name: go vet
|
|
if: steps.gomod.outputs.present == 'true'
|
|
run: go vet ./...
|
|
|
|
- name: golangci-lint
|
|
if: steps.gomod.outputs.present == 'true'
|
|
run: golangci-lint run ./...
|
|
|
|
- name: go test (short, race)
|
|
if: steps.gomod.outputs.present == 'true'
|
|
run: go test -short -race ./...
|