Bump the tanstack-query group with 2 updates (#253) #586
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-FileCopyrightText: Copyright 2025, 2026 Element Creations 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@v6 | |
| if: ${{ !cancelled() }} | |
| with: | |
| name: playwright-report | |
| path: playwright-report/ | |
| retention-days: 30 |