Merge pull request #12 from laaledesiempre/main #25
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: ESLint | |
on: push | |
jobs: | |
ESLint: | |
name: Run linter and enforce style | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Install ESLint | |
run: npm i eslint eslint-config-standard | |
- name: Run ESLint | |
run: ./node_modules/eslint/bin/eslint.js src/pesterchum.js |