Merge pull request #10070 from jandubois/fix-noproxy-list #7808
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: e2e tests on Windows | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches-ignore: | |
| - 'dependabot/**' | |
| pull_request: {} | |
| defaults: | |
| run: | |
| shell: powershell | |
| jobs: | |
| check-paths: | |
| uses: ./.github/workflows/paths-ignore.yaml | |
| e2e-tests: | |
| needs: check-paths | |
| if: needs.check-paths.outputs.should-run == 'true' | |
| timeout-minutes: 90 | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - uses: ./.github/actions/setup-environment | |
| - uses: ./.github/actions/yarn-install | |
| - name: Run e2e Tests | |
| run: yarn test:e2e | |
| env: | |
| RD_DEBUG_ENABLED: '1' | |
| - name: Upload failure reports | |
| uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0 | |
| if: always() | |
| with: | |
| name: e2etest-artifacts | |
| path: ./e2e/reports/* |