From 8a7e5bce8c01908f3bfa059d0401b1dd9e276401 Mon Sep 17 00:00:00 2001 From: jlightner Date: Fri, 3 Apr 2026 06:06:20 +0000 Subject: [PATCH] ci: add Forgejo Actions workflow for test automation Runs TypeScript type checking and vitest on push/PR to master. --- .forgejo/workflows/ci.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .forgejo/workflows/ci.yml diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml new file mode 100644 index 0000000..3f21e7e --- /dev/null +++ b/.forgejo/workflows/ci.yml @@ -0,0 +1,22 @@ +name: CI + +on: + push: + branches: [master] + pull_request: + branches: [master] + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Install dependencies + run: npm ci + + - name: Type check + run: npx tsc --noEmit + + - name: Run tests + run: npm test