style(lexico): π update sidebar width for improved layout consistency #45
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: π§ͺ Test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| setup: | |
| uses: ./.github/workflows/setup.yml | |
| test: | |
| name: π§ͺ Test | |
| runs-on: ubuntu-latest | |
| needs: setup | |
| steps: | |
| - name: π₯ Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: π¦ Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10.20.0 | |
| - name: π’ Setup node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "22.20.0" | |
| cache: "pnpm" | |
| - name: π― Set NX SHAs | |
| uses: nrwl/nx-set-shas@v4 | |
| - name: β»οΈ Restore cache | |
| uses: actions/cache/restore@v4 | |
| with: | |
| path: .nx/cache | |
| key: ${{ needs.setup.outputs.cache-key }} | |
| - name: π Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: π Verify cache | |
| run: | | |
| echo "=== NX Cache Directory ===" | |
| ls -lah .nx/cache 2>/dev/null || echo "No cache directory found (first run)" | |
| echo "=== Cache Size ===" | |
| du -sh .nx/cache 2>/dev/null || echo "No cache to measure" | |
| - name: π§ͺ Test Coverage | |
| run: npx nx affected -t test --parallel=3 --coverage --verbose | |
| - name: π Upload Coverage | |
| uses: actions/upload-artifact@v4 | |
| if: always() | |
| with: | |
| name: coverage-reports | |
| path: coverage/ | |
| retention-days: 30 |