Add Notebook to Compare Data in Ross's Clone Database to Halloween Data #107
This file contains hidden or 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: Spellcheck | |
| permissions: | |
| contents: read | |
| checks: write | |
| pull-requests: write | |
| on: | |
| pull_request: | |
| jobs: | |
| typos: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| - name: Run spellcheck | |
| uses: reviewdog/action-misspell@v1 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| reporter: github-pr-annotations | |
| level: warning | |
| filter_mode: diff_context | |
| exclude: | | |
| flyway/sql/* | |
| frontend/src/@types/fhir/*.ts |