Skip to content

Commit 97b22fa

Browse files
committed
ci: run tests on Node 24
1 parent bbd8af6 commit 97b22fa

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
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: poppinss/.github/.github/workflows/test.yml@next
1010

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

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

.github/workflows/release.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,23 @@ 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
32+
2833
- run: npm run release major -- --ci --preRelease=beta
2934
env:
3035
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)