fix: Add support for Node 16 (#2886)

This commit is contained in:
Ben McCann 2023-07-24 22:07:51 -07:00 committed by GitHub
parent ab23e19a4e
commit e465ce48c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ jobs:
strategy: strategy:
matrix: matrix:
# lowest verison here should also be in `engines` field # lowest verison here should also be in `engines` field
node_version: [18, 'lts/*', '*'] node_version: [16, 18, 'lts/*', '*']
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout Code - name: Checkout Code

View File

@ -89,6 +89,6 @@
"minify": "uglifyjs lib/marked.umd.js -cm --comments /Copyright/ -o marked.min.js" "minify": "uglifyjs lib/marked.umd.js -cm --comments /Copyright/ -o marked.min.js"
}, },
"engines": { "engines": {
"node": ">= 18" "node": ">= 16"
} }
} }