build(deps): bump qs from 6.15.0 to 6.15.2 #10679
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: End To End Test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - legacy | |
| pull_request: | |
| concurrency: | |
| group: end-to-end-${{ github.head_ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| suite: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 20 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| submodules: true | |
| - name: Setup Python environment | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.14' | |
| - name: Setup Node.js environment | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: '20' | |
| cache: 'yarn' | |
| - name: Clean Up Disk Space | |
| run: | | |
| # Space usage before cleanup | |
| df -h / | |
| sudo rm -rf /usr/lib/jvm /usr/local/.ghcup /usr/local/lib/android /usr/local/share/powershell /usr/share/dotnet /usr/share/swift | |
| df -h / | |
| - name: Turbo cache | |
| if: ${{ github.ref_name != 'main' }} | |
| id: turbo-cache | |
| uses: actions/cache@v5 | |
| with: | |
| path: node_modules/.cache/turbo | |
| key: | |
| turbo-end-to-end-${{ github.job }}-${{ github.ref_name }}-${{ | |
| github.sha }} | |
| restore-keys: | | |
| turbo-end-to-end-${{ github.job }}-${{ github.ref_name }}- | |
| - run: yarn install | |
| - uses: astral-sh/setup-uv@v7 | |
| - name: Test E2E | |
| uses: GabrielBB/xvfb-action@v1 | |
| with: | |
| run: yarn test:e2e | |
| options: '-screen 0 1600x1200x24' | |
| - uses: actions/upload-artifact@v7 | |
| if: failure() | |
| with: | |
| name: screenshots | |
| path: | | |
| extension/src/test/e2e/screenshots | |
| extension/src/test/e2e/logs |