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