Skip to content

chore(deps): bump lint-staged from 15.2.9 to 15.2.10 (#290) #504

chore(deps): bump lint-staged from 15.2.9 to 15.2.10 (#290)

chore(deps): bump lint-staged from 15.2.9 to 15.2.10 (#290) #504

Workflow file for this run

name: Lint
on:
push:
branches:
- master
pull_request:
permissions:
contents: read
jobs:
lint:
name: Lint JS
runs-on: ubuntu-latest
env:
CI: true
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{github.event.pull_request.head.ref}}
fetch-depth: 0
- name: Setup Node 🔧
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
- name: Install Dependencies 🔧
run: npm ci
- name: Lint
run: npm run lint