Skip to content

build(deps-dev): bump typescript from 5.1.6 to 5.2.2 #164

build(deps-dev): bump typescript from 5.1.6 to 5.2.2

build(deps-dev): bump typescript from 5.1.6 to 5.2.2 #164

Workflow file for this run

name: lint
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
typos:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Run [typos]
uses: crate-ci/[email protected]
pre-commit:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
hook_id: [
trailing-whitespace,
end-of-file-fixer,
check-yaml,
detect-private-key
]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Python
uses: actions/setup-python@v4
- name: Run [${{ matrix.hook_id }}]
uses: pre-commit/[email protected]
with:
extra_args: ${{ matrix.hook_id }} --all-files