fix(app): reconciliation saveUnbalancedBlockHeight store-key mismatch (MOCA-670) #893
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: markdown lint | |
| # Runs markdownlint-cli on the repository using .markdownlint.yml and | |
| # .markdownlintignore. Triggered on every pull request and on pushes to main | |
| # and develop. The markdown-lint job runs only when the diff includes at least | |
| # one *.md file (see technote-space/get-diff-action and env.GIT_DIFF below). | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| - develop | |
| jobs: | |
| markdown-lint: | |
| name: Run markdown-lint | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: technote-space/get-diff-action@v6.1.2 | |
| with: | |
| PATTERNS: | | |
| **/**.md | |
| - uses: nosborn/github-action-markdown-cli@v3.2.0 | |
| with: | |
| files: . | |
| config_file: .markdownlint.yml | |
| ignore_path: .markdownlintignore | |
| # Run only when the change set includes Markdown files | |
| if: env.GIT_DIFF |