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
+20-34Lines changed: 20 additions & 34 deletions
Original file line number
Diff line number
Diff line change
@@ -10,9 +10,7 @@ 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 }} and webpack v${{ matrix.webpack-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:
@@ -35,6 +33,15 @@ jobs:
35
33
webpack-version: 5
36
34
- node-version: 8.x
37
35
html-plugin-version: 5
36
+
include:
37
+
- node-version: 10.x
38
+
install-puppeteer: true
39
+
- node-version: 12.x
40
+
install-puppeteer: true
41
+
- node-version: 14.x
42
+
install-puppeteer: true
43
+
- node-version: 15.x
44
+
install-puppeteer: true
38
45
runs-on: ubuntu-latest
39
46
40
47
steps:
@@ -55,13 +62,17 @@ jobs:
55
62
uses: actions/setup-node@v2
56
63
with:
57
64
node-version: ${{ matrix.node-version }}
58
-
# prettier-ignore
59
65
- name: install with html-webpack-plugin v${{matrix.html-plugin-version }} and webpack v${{ matrix.webpack-version }}
0 commit comments