Skip to content

chore(deps-dev): bump eslint from 8.50.0 to 8.56.0 #164

chore(deps-dev): bump eslint from 8.50.0 to 8.56.0

chore(deps-dev): bump eslint from 8.50.0 to 8.56.0 #164

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Run lint
run: npm run lint