Skip to content

Bump @types/node from 20.12.12 to 20.12.13 #21

Bump @types/node from 20.12.12 to 20.12.13

Bump @types/node from 20.12.12 to 20.12.13 #21

Workflow file for this run

on:
push:
pull_request:
paths:
- "**.json"
- "**.js"
- "**.ts"
- "**.yml"
- "**.yaml"
- "**.rs"
- "**.md"
permissions:
packages: read
contents: read
name: check-typos
jobs:
check-typos:
name: check typos
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
- name: Install codespell
run: |
python -m pip install codespell
- name: Run codespell
run: codespell --config .codespellrc # Edit this file to tweak the typo list and other configuration.