diff --git a/.forgejo/workflows/test.yaml b/.forgejo/workflows/test.yaml
new file mode 100644
index 0000000..d9c13d5
--- /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
+      - run: corepack enable
+      - uses: actions/setup-node@v4
+        with:
+          cache: "yarn"
+      - run: yarn install
+      - run: yarn coverage