Skip to content

Commit

Permalink
Pull Request作成時にLintを実行する
Browse files Browse the repository at this point in the history
  • Loading branch information
mkmn committed Jan 12, 2024
1 parent 13a5353 commit 662174a
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: lint

on:
- pull_request

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0
- name: Install Dependency
run: yarn --frozen-lockfile
- name: lint
run: yarn lint

0 comments on commit 662174a

Please sign in to comment.