Skip to content

chore(deps): update dependency knip to v5.14.0 #4119

chore(deps): update dependency knip to v5.14.0

chore(deps): update dependency knip to v5.14.0 #4119

Workflow file for this run

name: Linter
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches:
- main
paths:
- "packages/**/*"
- "config/*"
- "*.json"
- ".github/workflows/linter.yml"
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout Code Base
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "lts/*"
cache: "npm"
- name: Install modules
run: npm ci
- name: Run TS Check
run: npm run ts:check
- name: Run Prettier
run: npm run prettier -- --check
- name: Run ESLint
run: npm run lint
- name: Run Knip
run: npm run knip
- name: Run Workspace dependencies check
run: npm run check