Remove unused ci workflow

This commit is contained in:
2026-07-25 19:45:44 +02:00
parent 41edd40cd5
commit 783ff0df1e
-32
View File
@@ -1,32 +0,0 @@
# Lint, test and build on every push.
#
# This needs a Gitea Actions runner registered against the instance. If there
# isn't one, delete this file - nothing else depends on it, and `npm test &&
# npm run build` locally covers the same ground.
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22"
cache: "npm"
- run: npm ci
# Asserts the transforms still produce the rosters the Python scripts they
# were ported from produced; see README.md.
- run: npm test
- run: npm run build