Skip to content

Commit 3a6e20a

Browse files
amareshsmvalscion
andauthored
build: add node v16 & update Github actions (#539)
* Update main.yml * build: add node v10 * build: remove node v19 * Remove node.js v18.x from CI for now It appears to crash for some reason * Add changelog entry --------- Co-authored-by: Vesa Laakso <[email protected]>
1 parent f959f9c commit 3a6e20a

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,21 @@ name: main
22
on:
33
push:
44
branches:
5-
- master
5+
- master
66
pull_request:
77
jobs:
88
build-and-test:
99
strategy:
1010
matrix:
11-
node:
12-
- '10'
13-
- '12'
14-
- '14'
11+
node: [10.x, 12.x, 14.x, 16.x]
1512
runs-on: ubuntu-latest
1613
name: Tests on Node.js v${{ matrix.node }}
1714
steps:
1815
- name: Checkout repo
19-
uses: actions/checkout@v2
16+
uses: actions/checkout@v3
2017

2118
- name: Setup node
22-
uses: actions/setup-node@v2
19+
uses: actions/setup-node@v3
2320
with:
2421
node-version: ${{ matrix.node }}
2522

@@ -36,12 +33,12 @@ jobs:
3633
runs-on: ubuntu-latest
3734
steps:
3835
- name: Checkout repo
39-
uses: actions/checkout@v2
36+
uses: actions/checkout@v3
4037

4138
- name: Setup node
42-
uses: actions/setup-node@v2
39+
uses: actions/setup-node@v3
4340
with:
44-
node-version: '14.x'
41+
node-version: "14.x"
4542

4643
- name: Download deps
4744
uses: bahmutov/npm-install@v1

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ _Note: Gaps between patch versions are faulty, broken or test releases._
1616
* Support reading large (>500MB) stats.json files ([#423](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/423) by [@henry-alakazhang](https://github.com/henry-alakazhang))
1717
* Improve search UX by graying out non-matches ([#554](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/554) by [@starpit](https://github.com/starpit))
1818

19+
* **Internal**
20+
* Add Node.js v16.x to CI and update GitHub actions ([#539](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/539) by [@amareshsm](https://github.com/amareshsm))
21+
1922
## 4.7.0
2023

2124
* **New Feature**

0 commit comments

Comments
 (0)