diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml deleted file mode 100644 index a41f2b1..0000000 --- a/.gitea/workflows/ci.yml +++ /dev/null @@ -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