docs(commands): tidy notes search error table #107
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: CI | |
| on: | |
| push: | |
| branches: [main, master] | |
| pull_request: | |
| branches: [main, master] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| env: | |
| LOG_LEVEL: error # Reduce log noise in CI | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Tooling | |
| uses: jdx/mise-action@d6e32c1796099e0f1f3ac741c220a8b7eae9e5dd | |
| with: | |
| install: true | |
| cache: true | |
| experimental: true | |
| - name: Lint | |
| run: mise run lint | |
| - name: Test | |
| run: mise run test | |
| - name: Build | |
| run: mise run build | |
| - name: E2E Tests | |
| run: mise run test-e2e | |
| - name: Smoke Tests | |
| run: mise run test-bats | |
| coverage: | |
| runs-on: ubuntu-latest | |
| env: | |
| LOG_LEVEL: error # Reduce log noise in CI | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Tooling | |
| uses: jdx/mise-action@d6e32c1796099e0f1f3ac741c220a8b7eae9e5dd | |
| with: | |
| install: true | |
| cache: true | |
| experimental: true | |
| - name: Build | |
| run: mise run build | |
| - name: Generate coverage | |
| run: mise run test --coverage | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v3 | |
| with: | |
| files: ./coverage.out | |
| flags: unittests | |
| name: codecov-umbrella |