From 4e502a0a671e74b61b35b158145052592c8203e3 Mon Sep 17 00:00:00 2001 From: Madeorsk Date: Sun, 30 Mar 2025 12:34:13 +0200 Subject: [PATCH] Add test workflow. --- .forgejo/workflows/test.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .forgejo/workflows/test.yaml diff --git a/.forgejo/workflows/test.yaml b/.forgejo/workflows/test.yaml new file mode 100644 index 0000000..aaa5eb7 --- /dev/null +++ b/.forgejo/workflows/test.yaml @@ -0,0 +1,11 @@ +on: [push] + +jobs: + test: + runs-on: docker + container: + image: node:latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + - run: yarn test