From d384cc96f66149996fdabe48ff6d2925e62e1087 Mon Sep 17 00:00:00 2001 From: siddharthd Date: Sun, 19 Jul 2026 00:59:22 +1000 Subject: [PATCH] ci: add Gitea Actions lint/test workflow --- .gitea/workflows/ci.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .gitea/workflows/ci.yml diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml new file mode 100644 index 0000000..aba8b39 --- /dev/null +++ b/.gitea/workflows/ci.yml @@ -0,0 +1,19 @@ +name: ci +on: + push: + pull_request: + +jobs: + lint-test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 22 + - name: Install + run: npm ci + - name: Lint + run: npm run lint + - name: Unit tests + run: npm test