Skip to content

build(deps): bump the npm group across 1 directory with 14 updates #189

build(deps): bump the npm group across 1 directory with 14 updates

build(deps): bump the npm group across 1 directory with 14 updates #189

Workflow file for this run

name: Check
on: [pull_request, push]
permissions:
contents: read
jobs:
format-and-lint:
name: Format and Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v6
- name: Setup Node.js
id: setup-node
uses: actions/setup-node@v6
with:
node-version-file: .node-version
cache: npm
- name: Install Dependencies
id: npm-ci
run: npm ci
- name: Check Format
id: npm-format-check
run: npm run format:check
- name: Lint
id: npm-lint
run: npm run lint