Skip to content

Commit b9df13a

Browse files
committed
ci: Run tests on renovate branches to reduce PR noise and update Action
1 parent 5429214 commit b9df13a

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

.github/workflows/ci-tests.yml

+6-7
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@ name: CI tests
22

33
on:
44
push:
5-
branches:
6-
- main
5+
branches: [main, renovate/**]
76
pull_request:
8-
branches: []
7+
branches: [main]
98

109
jobs:
1110
test:
@@ -14,15 +13,15 @@ jobs:
1413

1514
steps:
1615
- name: Checkout code
17-
uses: actions/checkout@v2
16+
uses: actions/checkout@v4
1817

1918
- name: Use Node.js
20-
uses: actions/setup-node@v2
19+
uses: actions/setup-node@v4
2120
with:
22-
node-version: '20.x'
21+
node-version: '20'
2322

2423
- name: Install dependencies
25-
run: npm install ; npm install -g bun ;
24+
run: npm install
2625

2726
- name: Build
2827
run: npm run build

0 commit comments

Comments
 (0)