Skip to content

Commit c9e8b0a

Browse files
committed
test only on 24
1 parent d0dc5a8 commit c9e8b0a

1 file changed

Lines changed: 1 addition & 26 deletions

File tree

.github/workflows/node.js.yml

Lines changed: 1 addition & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010

1111
strategy:
1212
matrix:
13-
node-version: [16.x, 24.x]
13+
node-version: [24.x]
1414

1515
steps:
1616
- uses: actions/checkout@v4
@@ -29,28 +29,3 @@ jobs:
2929
run: npm run test:e2e
3030
- name: Run unit tests
3131
run: npm run test:unit
32-
33-
bun-tests:
34-
runs-on: ubuntu-latest
35-
timeout-minutes: 30
36-
37-
steps:
38-
- name: Checkout code
39-
uses: actions/checkout@v4
40-
- name: Remove Node.js installed by setup-node action (if any)
41-
run: |
42-
if command -v node &> /dev/null; then
43-
sudo rm -rf "$(which node)"
44-
fi
45-
if command -v npm &> /dev/null; then
46-
sudo rm -rf "$(which npm)"
47-
fi
48-
49-
- name: Setup Bun
50-
uses: oven-sh/setup-bun@v1
51-
- name: Install dependencies using Bun
52-
run: bun install
53-
- name: Run end-to-end tests with Bun
54-
run: bun run test:e2e
55-
- name: Run unit tests with Bun
56-
run: bun run test:unit

0 commit comments

Comments
 (0)