Skip to content

Commit

Permalink
feat(ci): add eslint check on PR
Browse files Browse the repository at this point in the history
  • Loading branch information
azarz committed Jan 31, 2024
1 parent 49bed87 commit c60a8d8
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/pr-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: CI
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install modules
run: npm i
- name: Run ESLint
run: eslint ./src/

0 comments on commit c60a8d8

Please sign in to comment.