From 8e6c1ceace9a38c1442a1eb8b1a736c09c573c2e Mon Sep 17 00:00:00 2001 From: Joshua Date: Tue, 17 Feb 2026 20:55:08 -0800 Subject: [PATCH] Add contracts CI workflow --- .gitea/workflows/check.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .gitea/workflows/check.yml diff --git a/.gitea/workflows/check.yml b/.gitea/workflows/check.yml new file mode 100644 index 0000000..b333658 --- /dev/null +++ b/.gitea/workflows/check.yml @@ -0,0 +1,19 @@ +name: check + +on: + push: + branches: [main] + pull_request: + +jobs: + contracts: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: "20" + - name: Install + run: npm ci + - name: Check + run: npm run check