Skip to content

[deps]: Update @types/node to v20.10.8 #242

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

[deps]: Update @types/node to v20.10.8 #242

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@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Set up Node
uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1
with:
cache: "npm"
cache-dependency-path: "**/package-lock.json"
node-version: "20"
- name: Run linter
run: |
npm ci
npm run lint