From 0824ec14f6a061200ae7e99c285458c905ec90da Mon Sep 17 00:00:00 2001 From: Mario Romero Date: Tue, 16 May 2023 14:43:04 -0400 Subject: [PATCH] Add deno workflow --- .gitea/workflows/deno.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .gitea/workflows/deno.yml diff --git a/.gitea/workflows/deno.yml b/.gitea/workflows/deno.yml new file mode 100644 index 0000000..f5a5020 --- /dev/null +++ b/.gitea/workflows/deno.yml @@ -0,0 +1,33 @@ +name: Deno app build and testing + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + deno: + runs-on: ubuntu-latest + timeout-minutes: 5 + + steps: + - name: Setup repo + uses: actions/checkout@v3 + + - name: Setup Deno + uses: denoland/setup-deno@v1 + with: + deno-version: v1.x + + - name: Verify formatting + run: deno fmt --check + + - name: Run linter + run: deno lint + + - name: Run tests + run: deno task test + + - name: Run type check + run: deno check *.ts && deno check **/*.ts