fix: fixup mf-6533 original image url #24040
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 Spell | |
on: | |
pull_request: | |
branches: [master, develop, released, hotfix/*, release/*] | |
merge_group: | |
types: [checks_requested] | |
permissions: | |
contents: read | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref }} | |
cancel-in-progress: true | |
jobs: | |
check-spell: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".node-version" | |
- name: Check Spell | |
if: ${{ github.event.pull_request }} | |
run: | | |
git fetch origin ${{ github.event.pull_request.base.ref }} --depth=1 | |
git diff --name-only origin/${{ github.event.pull_request.base.ref }} | xargs npx cspell lint --no-must-find-files --no-progress |