SponsorBlockServer/.github/workflows/eslint.yml
2022-10-28 17:00:01 -04:00

21 lines
No EOL
347 B
YAML

name: Linting
on:
push:
branches:
- master
pull_request:
jobs:
lint:
name: Lint with ESLint
runs-on: ubuntu-latest
steps:
# Initialization
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- run: npm install
- name: Run Tests
timeout-minutes: 5
run: npm run lint