You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/node.js.yml
+24-34Lines changed: 24 additions & 34 deletions
Original file line number
Diff line number
Diff line change
@@ -10,14 +10,22 @@ on:
10
10
11
11
jobs:
12
12
test-node:
13
-
name:
14
-
# prettier-ignore
15
-
Test on Node.js v${{ matrix.node-version }} and html-webpack-plugin v${{ matrix.html-plugin-version }}
13
+
name: Test on Node.js v${{ matrix.node-version }} and html-webpack-plugin v${{ matrix.html-plugin-version }} and webpack v${{ matrix.webpack-version }}
16
14
strategy:
17
15
fail-fast: false
18
16
matrix:
19
17
node-version: [6.x, 8.x, 10.x, 12.x, 14.x, 15.x]
20
18
html-plugin-version: [3, 4]
19
+
webpack-version: [4]
20
+
include:
21
+
- node-version: 10.x
22
+
install-puppeteer: true
23
+
- node-version: 12.x
24
+
install-puppeteer: true
25
+
- node-version: 14.x
26
+
install-puppeteer: true
27
+
- node-version: 15.x
28
+
install-puppeteer: true
21
29
runs-on: ubuntu-latest
22
30
23
31
steps:
@@ -38,10 +46,17 @@ jobs:
38
46
uses: actions/setup-node@v2
39
47
with:
40
48
node-version: ${{ matrix.node-version }}
41
-
- name: install with html-webpack-plugin v${{matrix.html-plugin-version }}
49
+
- name: install with html-webpack-plugin v${{matrix.html-plugin-version }} and webpack v${{ matrix.webpack-version }}
0 commit comments