diff --git a/.forgejo/workflows/continuous-integration.yaml b/.forgejo/workflows/continuous-integration.yaml new file mode 100644 index 0000000..2060ab9 --- /dev/null +++ b/.forgejo/workflows/continuous-integration.yaml @@ -0,0 +1,14 @@ +on: + pull_request: + push: + branches: [main] +jobs: + test: + runs-on: docker + container: + image: node:23 + steps: + - uses: https://code.forgejo.org/actions/checkout@v4 + - run: npm install -g pnpm@10.8.0 + - run: pnpm install + - run: pnpm test