Skip to content

chore(deps): bump the actions-all group with 2 updates #1092

chore(deps): bump the actions-all group with 2 updates

chore(deps): bump the actions-all group with 2 updates #1092

Workflow file for this run

name: Spell Check
on:
pull_request:
permissions:
contents: read
jobs:
spell-check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v46
with:
include_all_old_new_renamed_files: true
files: |
**/*.md
**/*.mdx
- name: Run Spell Check on all changed files
uses: crate-ci/typos@master
with:
config: ./.github/config/typos.toml
files: ${{ steps.changed-files.outputs.all_changed_files }}