Skip to content

Commit a5338c7

Browse files
committed
chore: update Node.js version to 24 in workflows and add test-results to .gitignore
1 parent a3823b3 commit a5338c7

5 files changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- uses: actions/checkout@v5
2626
- uses: actions/setup-node@v5
2727
with:
28-
node-version: '22'
28+
node-version: '24'
2929
registry-url: 'https://registry.npmjs.org'
3030
scope: '@vtbag'
3131
- run: npm install -g npm

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/checkout@v4
2020
- uses: actions/setup-node@v4
2121
with:
22-
node-version: 18
22+
node-version: 24
2323
- run: npm ci
2424
- name: Create Release Pull Request
2525
uses: changesets/action@v1

.github/workflows/run-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup Node
1818
uses: actions/setup-node@v4
1919
with:
20-
node-version: "18"
20+
node-version: "24"
2121
cache: npm
2222
cache-dependency-path: ./package-lock.json
2323

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Setup Node
2020
uses: actions/setup-node@v4
2121
with:
22-
node-version: "18"
22+
node-version: "24"
2323
cache: npm
2424
cache-dependency-path: ./package-lock.json
2525

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ node_modules
22
lib
33
.astro
44
dist
5-
playwright-report
5+
playwright-report
6+
test-results

0 commit comments

Comments
 (0)