From 5290815c6b11822fe5c1a5ec2a98c9a83a52aaed Mon Sep 17 00:00:00 2001 From: Simon Lecoq <22963968+lowlighter@users.noreply.github.com> Date: Thu, 2 Nov 2023 02:54:59 +0100 Subject: [PATCH] ci: create checks --- .github/workflows/deno.yml | 17 +++++++++++++++++ 1 file changed, 17 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..d0859cb --- /dev/null +++ b/.github/workflows/deno.yml @@ -0,0 +1,17 @@ +name: ci +on: + push: + branches: ["main"] + pull_request: + branches: ["main"] +permissions: + contents: read +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: denoland/setup-deno@v1 + - run: deno task make code:check + - run: deno task make test +