Skip to content

build(deps-dev): bump the linter group across 1 directory with 8 updates #38

build(deps-dev): bump the linter group across 1 directory with 8 updates

build(deps-dev): bump the linter group across 1 directory with 8 updates #38

Workflow file for this run

name: PR Linting
on:
pull_request:
types: [opened, synchronize, reopened]
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Check Format
run: npm run check:format
- name: Run lint
run: npm run lint