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