From 2debdf5e466cd5e39a447756ea5e47d89ea75b21 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 | 15 +++++++++++++++ 1 file changed, 15 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..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