docs: add missing information about status bar props #5261
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: Lint | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| install-and-lint: | |
| runs-on: ubuntu-latest | |
| concurrency: | |
| group: install-and-lint-${{ github.ref }} | |
| cancel-in-progress: true | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js (version from .nvmrc) | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: '.nvmrc' | |
| cache: 'yarn' | |
| - name: Install node dependencies | |
| run: yarn | |
| - name: Format code | |
| run: | | |
| yarn format | |
| - name: Run linter | |
| run: | | |
| yarn lint | |
| - name: Check types | |
| run: | | |
| yarn check-types |