From 783ff0df1e57d009280bd8a199a405066114d1fb Mon Sep 17 00:00:00 2001 From: luxick Date: Sat, 25 Jul 2026 19:45:44 +0200 Subject: [PATCH] Remove unused ci workflow --- .gitea/workflows/ci.yml | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 .gitea/workflows/ci.yml 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