Bump esbuild from 0.24.0 to 0.24.1 (#490) #630
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 the latest version of uv | |
uses: astral-sh/setup-uv@v4 | |
- name: Install codespell | |
run: | | |
uv venv .venv | |
echo "VIRTUAL_ENV=.venv" >> $GITHUB_ENV | |
echo "$PWD/.venv/bin" >> $GITHUB_PATH | |
uv pip install codespell | |
- name: Run codespell | |
run: codespell --config .codespellrc # Edit this file to tweak the typo list and other configuration. |