Skip to content

Commit 2850a39

Browse files
authored
keyv - chore: moving to nodejs24 tests (#1796)
1 parent e4d5581 commit 2850a39

2 files changed

Lines changed: 45 additions & 2 deletions

File tree

.github/workflows/codecov.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ permissions:
1313
jobs:
1414
build:
1515
runs-on: ubuntu-latest
16-
name: Node 22
16+
name: Node 24
1717
steps:
1818
- uses: actions/checkout@v4
1919
- name: Setup node
2020
uses: actions/setup-node@v4
2121
with:
22-
node-version: 22
22+
node-version: 24
2323

2424
- name: Install pnpm
2525
run: npm install -g pnpm

.github/workflows/tests.yaml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: tests
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches: [ main ]
7+
pull_request:
8+
branches: [ main ]
9+
10+
permissions:
11+
contents: read
12+
13+
jobs:
14+
build:
15+
runs-on: ubuntu-latest
16+
strategy:
17+
matrix:
18+
node: [ '24' ]
19+
name: Node ${{ matrix.node }}
20+
steps:
21+
- uses: actions/checkout@v4
22+
- name: Setup node
23+
uses: actions/setup-node@v4
24+
with:
25+
node-version: ${{ matrix.node }}
26+
27+
- name: Install pnpm
28+
run: npm install -g pnpm
29+
30+
- name: Start Services
31+
run: pnpm test:services:start
32+
33+
- name: Install Dependencies
34+
run: pnpm install
35+
36+
- name: Approve Builds
37+
run: pnpm approve-builds
38+
39+
- name: Build
40+
run: pnpm build
41+
42+
- name: Test Packages
43+
run: pnpm test

0 commit comments

Comments
 (0)