ci: remove test/race timeouts, add concurrency cancel-in-progress, fix npm audit vulns
CI / Go vulnerabilities (push) Successful in 35s
CI / Build & Vet (push) Successful in 49s
CI / Frontend build (gate) (push) Successful in 57s
CI / Tests (prod) (push) Has been cancelled
CI / Tests (dev) (push) Has been cancelled
CI / Race (prod) (push) Has been cancelled
CI / Race (dev) (push) Has been cancelled
CI / Frontend QC (audit) (push) Has been cancelled
CI / Frontend QC (typecheck) (push) Has been cancelled
CI / Frontend QC (lint) (push) Has been cancelled

- Remove -timeout 180s/240s from go test and race commands
- Add concurrency group to cancel stale pipelines on new pushes
- Run npm update to bump Vite 7.3.5 -> 7.3.6, fixing nested esbuild vuln
- npm audit now at 0 vulnerabilities

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
2026-07-09 17:43:13 +01:00
co-authored by Sisyphus
parent a17d6fd2e6
commit 914f9993ec
5 changed files with 552 additions and 577 deletions
+6 -2
View File
@@ -7,6 +7,10 @@ on:
- develop
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
POSTGRES_USER: myuser
POSTGRES_PASSWORD: mypassword
@@ -121,7 +125,7 @@ jobs:
- name: Run tests
working-directory: backend
run: go test -tags "${{ matrix.gotags }}" -count=1 ${{ matrix.verbose }} -timeout 180s ./...
run: go test -tags "${{ matrix.gotags }}" -count=1 ${{ matrix.verbose }} ./...
env:
POSTGRES_HOST: postgres
TEST_DB_HOST: postgres
@@ -191,7 +195,7 @@ jobs:
- name: Run race detector
working-directory: backend
run: go test -tags "${{ matrix.gotags }}" -race -count=1 -timeout 240s ./...
run: go test -tags "${{ matrix.gotags }}" -race -count=1 ./...
env:
POSTGRES_HOST: postgres
TEST_DB_HOST: postgres