Skip to content

add warning note for downgrading on automated upgrade #275

add warning note for downgrading on automated upgrade

add warning note for downgrading on automated upgrade #275

Workflow file for this run

name: Codespell
on:
push:
pull_request:
branches:
- main
workflow_dispatch: {}
jobs:
spellcheck:
name: Spell Check
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Set up Python 🐍
uses: actions/setup-python@v4
- name: Install codespell
run: |
python -m pip install --upgrade pip
pip install codespell
- name: Check spelling
run: codespell --skip=.git,./src,./node_modules,package.json,babel.config.js,docusaurus.config.js,sidebars.js,yarn.lock --check-filenames --ignore-regex=.te# --ignore-words=.codespellignore