Skip to content

Djurek/cspell baseline #8

Djurek/cspell baseline

Djurek/cspell baseline #8

Workflow file for this run

name: Check Spelling in Changed Files
on:
pull_request:
branches:
- main
- RPSaaSMaster
- typespec-next
jobs:
check-spelling:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
# TODO: is this required?
with:
fetch-depth: 0 # Ensure full history is fetched
- name: Run spelling check
run: |
./eng/common/scripts/check-spelling-in-changed-files.ps1 `
-SourceCommittish '${{ github.sha }}' `
-TargetCommittish '${{ github.base_ref }}'
shell: pwsh