ci: add go test and npm test to CI pipeline, remove redundant npm ci

- ci.yml: add 'go test ./...' and 'npm test' steps
- release.yml: remove redundant 'cd frontend && npm ci' (GoReleaser handles it)
This commit is contained in:
MrFastwind
2026-07-23 20:15:31 +02:00
parent d54c46d2ad
commit d66f8bdd26
2 changed files with 2 additions and 2 deletions
+2 -1
View File
@@ -17,4 +17,5 @@ jobs:
with:
node-version: "22"
- run: cd backend && go build ./...
- run: cd frontend && npm ci && npm run build
- run: cd backend && go test ./...
- run: cd frontend && npm ci && npm run build && npm test