Skip to content

chore(deps): bump the npm_and_yarn group with 2 updates #932

chore(deps): bump the npm_and_yarn group with 2 updates

chore(deps): bump the npm_and_yarn group with 2 updates #932

Workflow file for this run

name: Lint (ESLInt)
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
# checkout
- name: Checkout repository code
uses: actions/checkout@v4
# install
- name: Setup PNPM
uses: pnpm/action-setup@v4
with:
version: 9.7.0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
# lint
- name: Run linters
run: pnpm lint