Skip to content

Commit f720e06

Browse files
committed
feat: drop support for node 14
1 parent 45fcfcb commit f720e06

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
strategy:
1111
matrix:
1212
node:
13-
- 14
1413
- 16
1514
- 18
15+
- 20
1616
react: [16, 17]
1717

1818
name: build (${{ matrix.node }} w/ React ${{ matrix.react }}
@@ -25,11 +25,6 @@ jobs:
2525
with:
2626
node-version: ${{ matrix.node }}
2727

28-
# Node 14 still ships with npm@6 which doesn't install peerDeps by default.
29-
- name: Install npm@7
30-
if: matrix.node == '14'
31-
run: npm install -g npm@7
32-
3328
- name: Install dependencies
3429
run: npm ci
3530

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
},
1212
"homepage": "https://readmeio.github.io/syntax-highlighter/",
1313
"engines": {
14-
"node": ">=14"
14+
"node": ">=16"
1515
},
1616
"scripts": {
1717
"build": "webpack --progress",

0 commit comments

Comments
 (0)