Skip to content

Commit

Permalink
add github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Lhcfl committed Sep 2, 2023
1 parent 3b40ad1 commit 6c3e31d
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/lint_check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: ESLint

on: [push, pull_request]

jobs:
eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm install
- run: npm run lint

0 comments on commit 6c3e31d

Please sign in to comment.