From 9d5db4f414cf961248f2b879f2b132b81a32cb92 Mon Sep 17 00:00:00 2001 From: "Max P." Date: Thu, 8 May 2025 19:32:51 +0200 Subject: [PATCH] feat(workflows): add CI for Deno project tests - Introduce a GitHub Actions workflow to run tests for the Deno project - Configure workflow to trigger on pull requests across all branches - Include steps for repository checkout, Deno setup, and test execution --- .gitea/workflows/test.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .gitea/workflows/test.yml diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml new file mode 100644 index 0000000..8425507 --- /dev/null +++ b/.gitea/workflows/test.yml @@ -0,0 +1,22 @@ +name: Test Deno Project + +on: + workflow_dispatch: + pull_request: + branches: + - '**' + +jobs: + test: + name: Run Tests + runs-on: ubuntu-latest + + steps: + - name: Checkout Repository + uses: actions/checkout@v4 + + - name: Setup Deno + uses: denoland/setup-deno@v1 + + - name: Run Tests + run: deno task test