Merge pull request #89 from zabop/main #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run ESLint | |
on: [push] | |
jobs: | |
Run-ESLint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Install dev dependencies | |
run: npm install --no-audit | |
- name: Run ESLint | |
run: npm run lint |