Bump external/commonItems from f5b02f2
to 3d00ea8
#994
Workflow file for this run
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: Check spelling | |
on: [pull_request] | |
jobs: | |
misspell: | |
name: runner / misspell | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code. | |
uses: actions/checkout@v4 | |
- name: misspell | |
uses: reviewdog/action-misspell@v1 | |
with: | |
github_token: ${{ secrets.github_token }} | |
locale: "US" | |
- name: Cleanup | |
uses: colpal/actions-clean@v1 | |
if: always() # To ensure this step runs even when earlier steps fail |