Skip to content

Commit

Permalink
feat: dropping support for node 16
Browse files Browse the repository at this point in the history
  • Loading branch information
erunion committed Oct 4, 2023
1 parent ee08c18 commit e0a7dce
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ updates:
- erunion
labels:
- dependencies
groups:
minor-development-deps:
dependency-type: 'development'
update-types:
- minor
- patch
commit-message:
prefix: chore(deps)
prefix-development: chore(deps-dev)
7 changes: 1 addition & 6 deletions .github/workflows/bundlewatch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,8 @@ jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 12.x

- name: Install npm@7
run: npm install -g npm@7

- name: Install dependencies
run: npm ci
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,14 @@ jobs:
strategy:
matrix:
node:
- 16
- 18
- 20
react: [16, 17]

name: build (${{ matrix.node }} w/ React ${{ matrix.react }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"homepage": "https://readmeio.github.io/syntax-highlighter/",
"engines": {
"node": ">=16"
"node": ">=18"
},
"scripts": {
"build": "webpack --progress",
Expand Down

0 comments on commit e0a7dce

Please sign in to comment.