From b0426e487bc00ec379234baec36495d93bb069f2 Mon Sep 17 00:00:00 2001 From: James Cook <47297250+jamesatjaminit@users.noreply.github.com> Date: Wed, 29 Nov 2023 00:02:07 +0000 Subject: [PATCH] add lint action --- .github/workflows/lint.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/lint.yml diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 0000000..c620bd6 --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,21 @@ +name: test +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + lint: + name: Lint + runs-on: ubuntu-latest + steps: + - name: Checkout Repo + uses: actions/checkout@v3 + - uses: denoland/setup-deno@v1 + with: + deno-version: 1.x + - name: Lint Package with Biome + run: deno test lint \ No newline at end of file