Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/test-e2e-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
dispatch-test-all:
name: Dispatch All Test
timeout-minutes: 60
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
if: always()
needs: [dispatch-test-all]

runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/setup-node@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-e2e-dispatch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
dispatch-tests:
name: Dispatch Tests
timeout-minutes: 60
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Setup pnpm
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-e2e-pr-comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
permissions:
pull-requests: write
name: Comment User Tip
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Download Pr Artifact
uses: dawidd6/action-download-artifact@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-e2e-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ concurrency:
jobs:
parse-components:
name: Parse Affected Components
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
outputs:
testComponents: ${{ steps.parseTitle.outputs.testComponents }}
testclis: ${{ steps.parsetestCli.outputs.testClis }}
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:

name: PR E2E Test
needs: parse-components
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
env:
TEST_COMPONENTS: ${{ needs.parse-components.outputs.testComponents }}
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-unit-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ concurrency:
jobs:
parse-components:
name: Parse Affected Components
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
outputs:
testComponents: ${{ steps.parseTitle.outputs.testComponents }}
steps:
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
pr-test:
name: PR Unit Test
needs: parse-components
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
env:
TEST_COMPONENTS: ${{ needs.parse-components.outputs.testComponents }}
steps:
Expand Down
Loading