diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6cc849f0..d6af38e6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -2,24 +2,21 @@ name: main on: push: branches: - - master + - master pull_request: jobs: build-and-test: strategy: matrix: - node: - - '10' - - '12' - - '14' + node: [10.x, 12.x, 14.x, 16.x] runs-on: ubuntu-latest name: Tests on Node.js v${{ matrix.node }} steps: - name: Checkout repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup node - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node }} @@ -36,12 +33,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup node - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: - node-version: '14.x' + node-version: "14.x" - name: Download deps uses: bahmutov/npm-install@v1 diff --git a/CHANGELOG.md b/CHANGELOG.md index 31878535..16e3b404 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,9 @@ _Note: Gaps between patch versions are faulty, broken or test releases._ * 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)) * 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)) + * **Internal** + * 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)) + ## 4.7.0 * **New Feature**