Files
rfd-affiliate-stripper/.github/workflows/lint.yaml
renovate[bot] 1febba64bb Update actions/checkout action to v5 (#44)
* Update actions/checkout action to v5

* Apply automatic changes

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-15 21:35:51 -04:00

23 lines
426 B
YAML

name: "Lint"
on:
push:
branches:
- main
pull_request:
jobs:
lint:
name: "Lint"
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v4
with:
node-version: 22
cache: 'npm'
cache-dependency-path: package-lock.json
- run: npm ci
- run: npm run lint