24 lines
369 B
YAML
24 lines
369 B
YAML
|
|
name: Lint
|
||
|
|
|
||
|
|
on:
|
||
|
|
push:
|
||
|
|
branches: [master, main]
|
||
|
|
pull_request:
|
||
|
|
|
||
|
|
jobs:
|
||
|
|
eslint:
|
||
|
|
runs-on: ubuntu-latest
|
||
|
|
steps:
|
||
|
|
- uses: actions/checkout@v4
|
||
|
|
|
||
|
|
- uses: actions/setup-node@v4
|
||
|
|
with:
|
||
|
|
node-version: "20"
|
||
|
|
cache: "npm"
|
||
|
|
|
||
|
|
- name: Install dependencies
|
||
|
|
run: npm ci
|
||
|
|
|
||
|
|
- name: Run ESLint
|
||
|
|
run: npm run lint
|