Bump rexml from 3.3.6 to 3.3.9 #184
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
name: Lint Checks | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "18" | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.10" | |
- name: Install markdownlint-cli | |
run: npm install -g markdownlint-cli | |
- name: Install codespell | |
run: pip install codespell | |
- name: Run markdownlint | |
run: | | |
markdownlint '**/*.md' --fix --disable MD013 MD033 MD051 MD025 MD024 MD028 | |
- name: Run codespell | |
run: | | |
codespell -I custom_words.txt --exclude-file=Gemfile.lock |