change schema for authority of alternate identifiers from entity id to generic identifier #448
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: # rebuild any PRs and main branch changes | |
push: | |
branches: | |
- 1.0* | |
pull_request: | |
branches: | |
- 1.0* | |
jobs: | |
spellcheck: # run the action | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: streetsidesoftware/cspell-action@v5 | |
with: | |
incremental_files_only: false | |
config: 'cspell.json' | |
# eventually we intend to fail the build on spelling errors | |
# so we restrict this to the docs folder | |
root: './docs' | |
# only warn for now | |
inline: warning # error | |
strict: false # true fails the build |