From 848c897ec288d8b96f997bed8feb41a9646eec40 Mon Sep 17 00:00:00 2001 From: nyaomaru Date: Sun, 1 Sep 2024 09:58:39 +0900 Subject: [PATCH] add: lint work flow --- .github/workflows/lint.yml | 18 ++++++++++++++++++ 1 file changed, 18 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..3910315 --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,18 @@ +name: Lint +on: [pull_request] +jobs: + lint: + name: lint + runs-on: ubuntu-latest + + steps: + - name: Clone repository + uses: actions/checkout@v4 + + - name: Install Deno + uses: denoland/setup-deno@v1 + with: + deno-version: v1.x + + - name: Lint step + run: "deno task check"