Bump prettier from 3.6.2 to 3.7.4 (#192) #468
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
| # SPDX-FileCopyrightText: Copyright 2025 New Vector Ltd. | |
| # | |
| # SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial | |
| name: Check code | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| license: | |
| name: REUSE license compliance check | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout the code | |
| uses: actions/checkout@v6 | |
| - name: REUSE Compliance Check | |
| uses: fsfe/reuse-action@v6 | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout the code | |
| uses: actions/checkout@v6 | |
| - uses: ./.github/actions/setup-node | |
| - name: Run the linters | |
| run: pnpm lint | |
| playwright: | |
| name: E2E tests | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| contents: read | |
| # Keep in sync with the @playwright/test version in package.json | |
| container: mcr.microsoft.com/playwright:v1.57.0-noble | |
| steps: | |
| - name: Checkout the code | |
| uses: actions/checkout@v6 | |
| - uses: ./.github/actions/setup-node | |
| - name: Build frontend | |
| run: pnpm build | |
| - name: Run Playwright tests | |
| run: pnpm test | |
| - uses: actions/upload-artifact@v5 | |
| if: ${{ !cancelled() }} | |
| with: | |
| name: playwright-report | |
| path: playwright-report/ | |
| retention-days: 30 |