chore(deps): update dependency postcss to v8.5.15 #242
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: frontend check | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - 'uiv2/**' | |
| - 'protos/**' | |
| - 'pnpm-lock.yaml' | |
| - 'flake.nix' | |
| - 'flake.lock' | |
| - '.github/workflows/frontend-check.yml' | |
| pull_request: | |
| paths: | |
| - 'uiv2/**' | |
| - 'protos/**' | |
| - 'pnpm-lock.yaml' | |
| - 'flake.nix' | |
| - 'flake.lock' | |
| - '.github/workflows/frontend-check.yml' | |
| permissions: | |
| contents: read | |
| checks: write | |
| jobs: | |
| uiv2: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Nix | |
| uses: DeterminateSystems/nix-installer-action@v21 | |
| with: | |
| flakehub: false | |
| - name: Setup Magic Nix Cache | |
| uses: DeterminateSystems/magic-nix-cache-action@v13 | |
| with: | |
| use-flakehub: false | |
| - name: Install dependencies | |
| run: nix develop --command pnpm install | |
| - name: Lint | |
| run: nix develop --command pnpm --filter uiv2 run lint | |
| - name: Build | |
| run: nix develop --command pnpm --filter uiv2 run build | |
| - name: Test | |
| run: nix develop --command pnpm --filter uiv2 run test -- --reporter=default --reporter=junit --outputFile.junit=test-results.xml | |
| continue-on-error: true | |
| - name: Publish Test Results | |
| uses: dorny/test-reporter@v1 | |
| if: always() | |
| with: | |
| name: Frontend Tests | |
| path: uiv2/test-results.xml | |
| reporter: jest-junit | |
| fail-on-empty: false |