failed-only-shards #2
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: failed-only-shards | |
| on: | |
| workflow_dispatch: | |
| jobs: | |
| test-shards: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| shard: [1, 2, 3] | |
| timeout-minutes: 60 | |
| runs-on: ubuntu-latest | |
| container: mcr.microsoft.com/playwright:latest | |
| env: | |
| CURRENTS_PROJECT_ID: bnsqNa | |
| CURRENTS_RECORD_KEY: ${{ secrets.CURRENTS_RECORD_KEY }} | |
| CURRENTS_CI_BUILD_ID: ${{ github.repository }}-${{ github.run_id }}-${{ github.run_attempt }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.ref }} | |
| # https://github.com/actions/runner-images/issues/6775 | |
| - run: | | |
| echo "$GITHUB_WORKSPACE" | |
| git config --global --add safe.directory "$GITHUB_WORKSPACE" | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20.x" | |
| - name: Install dependencies | |
| run: | | |
| npm ci | |
| npx playwright install chrome | |
| npm install -g @currents/cmd@beta | |
| - name: Load last run from cache | |
| env: | |
| DEBUG: "currents,currents:*" | |
| run: | | |
| npx currents cache get \ | |
| --preset last-run \ | |
| --preset-output .preset_output \ | |
| --matrix-index ${{ matrix.shard }} \ | |
| --matrix-total ${{ strategy.job-total }} | |
| echo "EXTRA_PW_FLAGS=$(cat .preset_output)" >> $GITHUB_ENV | |
| - name: Playwright Tests | |
| working-directory: ./basic | |
| run: | | |
| COMMAND="npx pwc $EXTRA_PW_FLAGS" | |
| echo "Running command: $COMMAND" | |
| $COMMAND | |
| - name: Cache the last run results | |
| # env: | |
| # DEBUG: "currents,currents:*" | |
| if: ${{ always() }} | |
| # --pw-output-dir is the directory where the test results are stored | |
| run: | | |
| npx currents cache set \ | |
| --preset last-run \ | |
| --pw-output-dir basic/test-results \ | |
| --matrix-index ${{ matrix.shard }} \ | |
| --matrix-total ${{ strategy.job-total }} |