Skip to content

Commit

Permalink
refactor: update the node version defined for testing #6
Browse files Browse the repository at this point in the history
  • Loading branch information
jason-capsule42 committed Dec 20, 2024
1 parent 9fb1db0 commit 9af9e18
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion templates/default/.github/settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ branches:
# Required. Require branches to be up to date before merging.
strict: true
# Required. The list of status checks to require in order to merge into this branch
contexts: ["test (18.x)", "test (20.x)", "license/cla"]
contexts: ["test (20.x)", "test (22.x)", "license/cla"]
# Required. Enforce all configured restrictions for administrators. Set to true to enforce required status checks for repository administrators. Set to null to disable.
enforce_admins: false
# Required. Restrict who can push to this branch. Team and user restrictions are only available for organization-owned repositories. Set to null to disable.
Expand Down
4 changes: 2 additions & 2 deletions templates/default/.github/workflows/testPublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

strategy:
matrix:
node-version: [18.x, 20.x]
node-version: [20.x, 22.x]

steps:
- uses: actions/checkout@v4
Expand All @@ -38,7 +38,7 @@ jobs:
persist-credentials: false
- uses: actions/setup-node@v4
with:
node-version: 20.x
node-version: 22.x
- run: npm ci
- run: npm run build:release
- uses: cycjimmy/semantic-release-action@v4
Expand Down

0 comments on commit 9af9e18

Please sign in to comment.