feat: oncoprint and june release notes #225
Workflow file for this run
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: Spell Check | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - content/** | |
| - .spelling | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| spellcheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| - name: setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| run_install: false | |
| - name: setup node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: lts/jod | |
| cache: pnpm | |
| - name: pnpm install | |
| run: pnpm install --frozen-lockfile | |
| - name: spellcheck | |
| run: pnpm mdspell --ignore-numbers --ignore-acronyms --en-us --no-suggestions --report content/**/**/*.md |