Skip to content

Commit

Permalink
fix: Add support for Node 16 (#2886)
Browse files Browse the repository at this point in the history
  • Loading branch information
benmccann committed Jul 25, 2023
1 parent ab23e19 commit e465ce4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
# lowest verison here should also be in `engines` field
node_version: [18, 'lts/*', '*']
node_version: [16, 18, 'lts/*', '*']
runs-on: ubuntu-latest
steps:
- name: Checkout Code
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,6 @@
"minify": "uglifyjs lib/marked.umd.js -cm --comments /Copyright/ -o marked.min.js"
},
"engines": {
"node": ">= 18"
"node": ">= 16"
}
}

1 comment on commit e465ce4

@vercel
Copy link

@vercel vercel bot commented on e465ce4 Jul 25, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.