Split PirateCoinsPage
into 2 Pages
#785
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: Markdown | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
types: | |
- opened | |
- synchronize | |
- reopened | |
merge_group: | |
schedule: | |
- cron: "0 14 * * 1" # every monday at 9 in the morning CST | |
workflow_dispatch: | |
env: | |
CI: true | |
permissions: | |
contents: read | |
jobs: | |
spell-check: | |
name: Check spelling | |
needs: [] | |
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/spell_check.yml@b7d3a7d287a7ed1f996861a73d69eafdfd7ed60e # v1.14.0 | |
with: | |
includes: | | |
**/*.md | |
**/*.dart | |
**/*.yaml | |
**/*.toml | |
**/*.json | |
modified_files_only: false | |
config: cspell.json | |
link-check: | |
name: Check Links | |
needs: [] | |
timeout-minutes: 2 | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🪄 Link check | |
uses: gaurav-nelson/github-action-markdown-link-check@d53a906aa6b22b8979d33bc86170567e619495ec # 1.0.15 | |
with: | |
use-quiet-mode: "yes" | |
use-verbose-mode: "yes" | |
base-branch: "main" | |
markdownlint: | |
name: Lint Markdown | |
needs: [] | |
timeout-minutes: 4 | |
runs-on: ubuntu-latest | |
steps: | |
- name: 📚 Git checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
with: | |
submodules: true | |
- name: 🪄 Markdown linting | |
uses: DavidAnson/markdownlint-cli2-action@455b6612a7b7a80f28be9e019b70abdd11696e4e # v14.0.0 | |
id: markdownlint | |
with: | |
fix: true | |
globs: | | |
**/*.md | |
continue-on-error: true |