From 6622eb3b32a2c49c996aa1738cf94c9a33d9223e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?OS=20Aplet=20=E2=9D=A4=EF=B8=8F=C2=AE=EF=B8=8F=F0=9F=87=A8?= =?UTF-8?q?=F0=9F=87=BF=20ME-AI=20v=20celosv=C4=9Btov=C3=A9m=20Ekosyst?= =?UTF-8?q?=C3=A9mu=20=F0=9F=8C=8D?= <185862724+osAplet@users.noreply.github.com> Date: Wed, 25 Jun 2025 22:29:03 +0200 Subject: [PATCH] deno.yml --- .github/workflows/deno.yml | 42 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 .github/workflows/deno.yml diff --git a/.github/workflows/deno.yml b/.github/workflows/deno.yml new file mode 100644 index 0000000..782af35 --- /dev/null +++ b/.github/workflows/deno.yml @@ -0,0 +1,42 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +# This workflow will install Deno then run `deno lint` and `deno test`. +# For more information see: https://github.com/denoland/setup-deno + +name: Deno + +on: + push: + branches: ["main"] + pull_request: + branches: ["main"] + +permissions: + contents: read + +jobs: + test: + runs-on: ubuntu-latest + + steps: + - name: Setup repo + uses: actions/checkout@v4 + + - name: Setup Deno + # uses: denoland/setup-deno@v1 + uses: denoland/setup-deno@61fe2df320078202e33d7d5ad347e7dcfa0e8f31 # v1.1.2 + with: + deno-version: v1.x + + # Uncomment this step to verify the use of 'deno fmt' on each commit. + # - name: Verify formatting + # run: deno fmt --check + + - name: Run linter + run: deno lint + + - name: Run tests + run: deno test -A