Skip to content

Commit

Permalink
add lint check (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
SKTT1Ryze authored Nov 26, 2023
1 parent d0f0323 commit a58b9a9
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 @@
on: [pull_request]
name: Lint Check
jobs:
lint_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18
- uses: bahmutov/npm-install@v1
with:
useLockFile: true
- name: Lint Check
run: npm run lint

0 comments on commit a58b9a9

Please sign in to comment.