Bump node from 18.18.0-alpine to 21.6.2-alpine #129
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
# NOTE: https://github.com/rails/rails/blob/main/.github/workflows/lint.yml | |
name: Spell | |
on: [push, pull_request] | |
jobs: | |
codespell: | |
name: Check spelling all files with codespell | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.10'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install codespell==2.1.0 | |
- name: Check spelling with codespell | |
run: codespell --ignore-words=codespell.txt --skip "./node_modules,./.next,./coverage,./package-lock.json,./.git,./ops" --builtin "clear,rare,informal,usage,code,names" || exit 1 |