Skip to content

[deps]: Update @types/node to v20.17.9 #645

[deps]: Update @types/node to v20.17.9

[deps]: Update @types/node to v20.17.9 #645

Workflow file for this run

name: Lint
on:
push:
paths-ignore:
- ".github/workflows/**"
workflow_dispatch:
inputs: {}
defaults:
run:
shell: bash
jobs:
lint:
name: Lint
runs-on: ubuntu-22.04
steps:
- name: Checkout repo
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
- name: Set up Node
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
with:
cache: "npm"
cache-dependency-path: "**/package-lock.json"
node-version: "20"
- name: Run linter
run: |
npm ci
npm run lint