@@ -31,19 +31,18 @@ jobs:
3131 - run : pnpm -C packages/plugin-rsc test
3232
3333 test-e2e :
34- name : test-rsc (${{ matrix.os }} - ${{ matrix.browser }} - ${{ matrix.shardIndex }}/${{ matrix.shardTotal }})
34+ name : test-rsc (${{ matrix.os }} / ${{ matrix.browser }})
3535 runs-on : ${{ matrix.os }}
3636 strategy :
37+ # TODO: shard?
3738 matrix :
38- shardIndex : [1, 2]
39- shardTotal : [2]
4039 os : [ubuntu-latest, macos-latest, windows-latest]
41- browser : [chromium, firefox, webkit ]
42- exclude :
43- - { os: ubuntu-latest, browser: webkit }
44- - { os: macos-latest, browser: firefox }
45- - { os: windows -latest, browser: firefox }
46- - { os: windows-latest, browser: webkit }
40+ browser : [chromium]
41+ include :
42+ - os : ubuntu-latest
43+ browser : firefox
44+ - os : macos -latest
45+ browser : webkit
4746 fail-fast : false
4847 steps :
4948 - uses : actions/checkout@v4
@@ -54,12 +53,12 @@ jobs:
5453 - run : pnpm i
5554 - run : pnpm build
5655 - run : pnpm -C packages/plugin-rsc exec playwright install ${{ matrix.browser }}
57- - run : pnpm -C packages/plugin-rsc test-e2e-ci --project=${{ matrix.browser }} --shard=${{ matrix.shardIndex }}/${{ matrix.shardTotal }}
56+ - run : pnpm -C packages/plugin-rsc test-e2e-ci --project=${{ matrix.browser }}
5857 env :
5958 TEST_ISOLATED : true
6059 - uses : actions/upload-artifact@v4
6160 if : always()
6261 with :
63- name : test-results-${{ matrix.os }}-${{ matrix.browser }}-${{ matrix.shardIndex }}
62+ name : test-results-${{ matrix.os }}-${{ matrix.browser }}
6463 path : |
6564 packages/plugin-rsc/test-results
0 commit comments