Skip to content

Bump node from 18.18.0-alpine to 21.6.2-alpine #129

Bump node from 18.18.0-alpine to 21.6.2-alpine

Bump node from 18.18.0-alpine to 21.6.2-alpine #129

Workflow file for this run

# 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