Skip to content

Commit 26cac95

Browse files
committed
ci: run tests on Node 24
1 parent 923401a commit 26cac95

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

.github/workflows/checks.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ on:
66

77
jobs:
88
test:
9-
uses: adonisjs/.github/.github/workflows/test.yml@main
9+
uses: adonisjs/.github/.github/workflows/test.yml@next
1010

1111
lint:
12-
uses: adonisjs/.github/.github/workflows/lint.yml@main
12+
uses: adonisjs/.github/.github/workflows/lint.yml@next
1313

1414
typecheck:
15-
uses: adonisjs/.github/.github/workflows/typecheck.yml@main
15+
uses: adonisjs/.github/.github/workflows/typecheck.yml@next

.github/workflows/release.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,21 @@ jobs:
1313
- uses: actions/checkout@v4
1414
with:
1515
fetch-depth: 0
16+
1617
- uses: actions/setup-node@v4
1718
with:
18-
node-version: 20
19+
node-version: 24
20+
1921
- name: git config
2022
run: |
2123
git config user.name "${GITHUB_ACTOR}"
2224
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
25+
2326
- name: Init npm config
2427
run: npm config set //registry.npmjs.org/:_authToken $NPM_TOKEN
2528
env:
2629
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
30+
2731
- run: npm install
2832
- run: npm run release -- --ci
2933
env:

package.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
"name": "@poppinss/defer",
33
"description": "A managed deferred queue to run async operations in the background",
44
"version": "1.1.1",
5-
"engines": {
6-
"node": ">=20.6.0"
7-
},
85
"type": "module",
96
"files": [
107
"build",

0 commit comments

Comments
 (0)