mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2024-11-10 09:07:47 +01:00
18 lines
317 B
YAML
18 lines
317 B
YAML
|
name: Linting
|
||
|
|
||
|
on: [push, pull_request]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
name: Lint with ESLint
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
# Initialization
|
||
|
- uses: actions/checkout@v2
|
||
|
- uses: actions/setup-node@v2
|
||
|
- run: npm install
|
||
|
|
||
|
- name: Run Tests
|
||
|
timeout-minutes: 5
|
||
|
run: npm run lint
|