We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b712f5d commit ca440a7Copy full SHA for ca440a7
1 file changed
.github/workflows/nodejs.yml
@@ -97,11 +97,8 @@ jobs:
97
node ./scripts/prepare-test-for-old-node.js
98
if: matrix.node-version == '18.x'
99
100
- - name: Setup firefox
101
- if: matrix.os != 'windows-latest'
102
- uses: browser-actions/setup-firefox@latest
103
- with:
104
- firefox-version: latest
+ - name: Install Playwright browsers and dependencies
+ run: npx playwright install --with-deps
105
106
- name: Link webpack-dev-server
107
run: |
@@ -119,6 +116,9 @@ jobs:
119
116
run: npm run test:coverage -- --ci --shard=${{ matrix.shard }}
120
117
if: matrix.node-version != '18.x'
121
118
+ - name: Run E2E tests for webpack version ${{ matrix.webpack-version }}
+ run: npm run test:e2e --shard=${{ matrix.shard }}
+
122
- name: Submit coverage data to codecov
123
uses: codecov/codecov-action@v4
124
with:
0 commit comments