diff --git a/.forgejo/workflows/test.yaml b/.forgejo/workflows/test.yaml new file mode 100644 index 0000000..5740756 --- /dev/null +++ b/.forgejo/workflows/test.yaml @@ -0,0 +1,15 @@ +on: [push] + +jobs: + test: + runs-on: docker + container: + image: node:latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + cache: "yarn" + - run: corepack enable + - run: yarn install + - run: yarn test