Skip to content

Commit

Permalink
chore: drop support for Node.js 10
Browse files Browse the repository at this point in the history
This is a prerequisite for shipping Puppeteer as JavaScript modules.

Issue: #6753

BREAKING CHANGE: Node.js 10 is no longer supported.
  • Loading branch information
mathiasbynens committed May 12, 2021
1 parent 4959d46 commit 48a36b0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Expand Up @@ -14,9 +14,9 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
# Include all major maintenance + active LTS Node.js versions.
# Include all major maintenance + active LTS + current Node.js versions.
# https://github.com/nodejs/Release#release-schedule
node: [10, 12, 14]
node: [12, 14, 16]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
with:
# Test only the oldest maintenance LTS Node.js version.
# https://github.com/nodejs/Release#release-schedule
node-version: 10
node-version: 12

- name: Install dependencies
run: |
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
with:
# Test only the oldest maintenance LTS Node.js version.
# https://github.com/nodejs/Release#release-schedule
node-version: 10
node-version: 12

- name: Install dependencies
run: |
Expand Down

0 comments on commit 48a36b0

Please sign in to comment.