Skip to content

Commit a6de4c3

Browse files
authored
breaking: bump supported Node.js version to v20+ (#2925)
1 parent ae8c46c commit a6de4c3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
uses: actions/github-script@v7
1414
with:
1515
script: |
16-
const titlePrefixes = ["feat", "fix", "break", "chore"];
16+
const titlePrefixes = ["feat", "fix", "breaking", "chore"];
1717
const title = context.payload.pull_request.title.toLowerCase();
1818
const titleHasValidPrefix = titlePrefixes.some((prefix) => title.startsWith(`${prefix}:`));
1919
if (!titleHasValidPrefix) { process.exit(-1); }

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
@@ -20,7 +20,7 @@
2020
"url": "https://github.com/AssemblyScript/assemblyscript/issues"
2121
},
2222
"engines": {
23-
"node": ">=18",
23+
"node": ">=20",
2424
"npm": ">=10"
2525
},
2626
"engineStrict": true,

0 commit comments

Comments
 (0)