Skip to content

build(deps-dev): bump @typescript-eslint/parser from 8.33.0 to 8.33.1 #6

build(deps-dev): bump @typescript-eslint/parser from 8.33.0 to 8.33.1

build(deps-dev): bump @typescript-eslint/parser from 8.33.0 to 8.33.1 #6

Workflow file for this run

name: lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v4
with:
cache: npm
- name: Install dependencies
run: npm ci --prefer-offline
- name: Lint commit message
run: npx commitlint --from=HEAD~1
- name: Run ESLint
run: npm run lint
- name: Check type
run: npm run lint:tsc