docs: A new --genesis-override CLI flag was added to the apply command, allowing users to set genesis parameters (e.g. staking unbonding time, governance voting period) when deploying a node with --preset genesis-chain. (sei-protocol/seictl#184)
#52
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: Link checker | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 12 * * *' | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| link-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - name: Install Mintlify CLI | |
| run: npm install -g mint | |
| - name: Validate docs.json schema | |
| run: mint --version && test -f docs.json | |
| - name: Check for broken links | |
| run: mint broken-links |