We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5429214 commit b9df13aCopy full SHA for b9df13a
.github/workflows/ci-tests.yml
@@ -2,10 +2,9 @@ name: CI tests
2
3
on:
4
push:
5
- branches:
6
- - main
+ branches: [main, renovate/**]
7
pull_request:
8
- branches: []
+ branches: [main]
9
10
jobs:
11
test:
@@ -14,15 +13,15 @@ jobs:
14
13
15
steps:
16
- name: Checkout code
17
- uses: actions/checkout@v2
+ uses: actions/checkout@v4
18
19
- name: Use Node.js
20
- uses: actions/setup-node@v2
+ uses: actions/setup-node@v4
21
with:
22
- node-version: '20.x'
+ node-version: '20'
23
24
- name: Install dependencies
25
- run: npm install ; npm install -g bun ;
+ run: npm install
26
27
- name: Build
28
run: npm run build
0 commit comments