Skip to content

build(deps-dev): Bump prettier from 3.2.5 to 3.3.2 #50

build(deps-dev): Bump prettier from 3.2.5 to 3.3.2

build(deps-dev): Bump prettier from 3.2.5 to 3.3.2 #50

Workflow file for this run

name: Lint
on: pull_request
permissions:
contents: read
concurrency:
group: eslint-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
eslint:
runs-on: ubuntu-latest
name: eslint
steps:
- name: Checkout
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
- name: Read package.json node and npm engines version
uses: skjnldsv/read-package-engines-version-actions@8205673bab74a63eb9b8093402fd9e0e018663a1 # v2.2
id: versions
with:
fallbackNode: '^20'
fallbackNpm: '^10'
- name: Set up node ${{ steps.versions.outputs.nodeVersion }}
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version: ${{ steps.versions.outputs.nodeVersion }}
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint