Skip to content

Commit

Permalink
Merge pull request #22 from nyaomaru/add-workflow-lint
Browse files Browse the repository at this point in the history
add: lint work flow
  • Loading branch information
nyaomaru authored Sep 1, 2024
2 parents aa14bd1 + 848c897 commit 694dff5
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit 694dff5

Please sign in to comment.