Files
OpenFrontIO/.github/workflows/ci.yml
Evan 4889cb83a0 ci: fail PRs when generated maps are out of date (#3876)
## Description:

## Summary
- Adds a `gen-maps` job to the CI workflow that runs `npm run gen-maps`
(Go map generator + prettier) and fails the check if the working tree
has any diff afterwards.
- The failure annotation tells the author to run `npm run gen-maps`
locally and commit the result, so stale generated maps can't slip
through review.
- Pulls the Go toolchain version from `map-generator/go.mod` so the CI
version stays in sync with the module automatically.


## Please complete the following:

- [x] I have added screenshots for all UI updates
- [x] I process any text displayed to the user through translateText()
and I've added it to the en.json file
- [x] I have added relevant tests to the test directory
- [x] I confirm I have thoroughly tested these changes and take full
responsibility for any bugs introduced

## Please put your Discord username so you can be contacted if a bug or
regression is found:

evan
2026-05-06 21:59:39 -06:00

99 lines
2.3 KiB
YAML

name: 🧪 CI
on:
merge_group:
types:
- checks_requested
pull_request:
push:
branches: [main]
permissions: {}
jobs:
build:
name: 🏗️ Build
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
submodules: false
- name: Setup node
uses: actions/setup-node@v6
with:
node-version: 24
- run: npm ci
- run: npm run build-prod
- uses: actions/upload-artifact@v7
with:
path: out/index.html
retention-days: 1
test:
name: 🔬 Test
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
submodules: false
- name: Setup node
uses: actions/setup-node@v6
with:
node-version: 24
- run: npm ci
- run: npm run test:coverage
eslint:
name: 🔍 ESLint
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: "24"
cache: "npm"
- run: npm ci
- run: npx eslint --format gha
prettier:
name: 🎨 Prettier
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: "24"
cache: "npm"
- run: npm ci
- run: npx prettier --check .
gen-maps:
name: 🗺️ Generated maps up to date
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: "24"
cache: "npm"
- uses: actions/setup-go@v6
with:
go-version-file: map-generator/go.mod
cache-dependency-path: map-generator/go.sum
- run: npm ci
- run: npm run gen-maps
- name: Check for diff
run: |
if [ -n "$(git status --porcelain)" ]; then
echo "::error::Generated maps are out of date — run 'npm run gen-maps' and commit the result."
git status --short
git --no-pager diff
exit 1
fi