Skip to content

Commit

Permalink
Adds eslint workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
nzaytsev committed Oct 8, 2024
1 parent 44bbdf1 commit 9e0c78b
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: ESLint
on:
pull_request:
branches: ['*']
types:
- opened
- reopened
- synchronize
- ready_for_review
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install modules
run: npm i -g pnpm@9 && pnpm
- name: Run ESLint
run: pnpm run lint

0 comments on commit 9e0c78b

Please sign in to comment.