Files
ArmA-3-web-server/.gitea/workflows/ci.yml
T
MrFastwind d66f8bdd26 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)
2026-07-23 20:15:31 +02:00

22 lines
458 B
YAML

name: CI
on:
push:
branches:
- "**"
pull_request: {}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.25"
- uses: actions/setup-node@v4
with:
node-version: "22"
- run: cd backend && go build ./...
- run: cd backend && go test ./...
- run: cd frontend && npm ci && npm run build && npm test