File tree 1 file changed +16
-21
lines changed
1 file changed +16
-21
lines changed Original file line number Diff line number Diff line change 16
16
matrix :
17
17
os : [ubuntu-latest, windows-latest, macos-latest]
18
18
node : ['18', '20']
19
- bundler : ['vite', 'webpack']
20
19
21
20
runs-on : ${{ matrix.os }}
22
21
@@ -57,37 +56,33 @@ jobs:
57
56
- name : Build source files
58
57
run : pnpm build
59
58
60
- - name : E2E dev (base /)
61
- working-directory : ./e2e
62
- run : pnpm e2e:ci:dev
59
+ - name : E2E test (base /, webpack)
60
+ run : pnpm test:e2e
63
61
env :
64
62
E2E_BASE : /
65
- E2E_BUNDLER : ${{ matrix.bundler }}
63
+ E2E_BUNDLER : webpack
66
64
E2E_COMMAND : dev
67
65
68
- - name : E2E dev (base /e2e/)
69
- working-directory : ./e2e
70
- run : pnpm e2e:ci:dev
66
+ - name : E2E test (base /, vite)
67
+ run : pnpm test:e2e
71
68
env :
72
- E2E_BASE : /e2e/
73
- E2E_BUNDLER : ${{ matrix.bundler }}
69
+ E2E_BASE : /
70
+ E2E_BUNDLER : vite
74
71
E2E_COMMAND : dev
75
72
76
- - name : E2E build (base /)
77
- working-directory : ./e2e
78
- run : pnpm e2e:ci:build
73
+ - name : E2E test (base /e2e/, webpack)
74
+ run : pnpm test:e2e
79
75
env :
80
- E2E_BASE : /
81
- E2E_BUNDLER : ${{ matrix.bundler }}
82
- E2E_COMMAND : build
76
+ E2E_BASE : /e2e/
77
+ E2E_BUNDLER : webpack
78
+ E2E_COMMAND : dev
83
79
84
- - name : E2E build (base /e2e/)
85
- working-directory : ./e2e
86
- run : pnpm e2e:ci:build
80
+ - name : E2E test (base /e2e/, vite)
81
+ run : pnpm test:e2e
87
82
env :
88
83
E2E_BASE : /e2e/
89
- E2E_BUNDLER : ${{ matrix.bundler }}
90
- E2E_COMMAND : build
84
+ E2E_BUNDLER : vite
85
+ E2E_COMMAND : dev
91
86
92
87
e2e-result :
93
88
if : ${{ always() }}
You can’t perform that action at this time.
0 commit comments