Skip to content

Commit

Permalink
Create lint.yml
Browse files Browse the repository at this point in the history
auto check lint
LucasSovre authored Mar 19, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 063d437 commit 1a57a38
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Lint check

on:
push:
branches:
- '*'
pull_request:
types: [opened, reopened]

jobs:
check-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
registry-url: https://registry.npmjs.org/
- run: npm install
- run: npm run lint

0 comments on commit 1a57a38

Please sign in to comment.