Skip to content

Commit

Permalink
add: lint work flow
Browse files Browse the repository at this point in the history
  • Loading branch information
nyaomaru committed Sep 1, 2024
1 parent aa14bd1 commit 848c897
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 848c897

Please sign in to comment.