Skip to content

Instantly share code, notes, and snippets.

@Karnak19
Last active June 22, 2021 07:20
Show Gist options
  • Select an option

  • Save Karnak19/e8cd4adf058f6354a245111a59f346b9 to your computer and use it in GitHub Desktop.

Select an option

Save Karnak19/e8cd4adf058f6354a245111a59f346b9 to your computer and use it in GitHub Desktop.
ESLint Github workflow
name: ESLint
on:
pull_request:
branches:
- master
- develop
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "15"
- name: Install modules
run: npm install
- name: Run ESLint
run: npx eslint . --ext .js,.jsx,.ts,.tsx
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment