Skip to content

Commit ef45a90

Browse files
authored
Merge branch 'main' into axios-default-client
2 parents 33e7719 + b9f7456 commit ef45a90

File tree

3 files changed

+24
-10
lines changed

3 files changed

+24
-10
lines changed

.coderabbit.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json
2+
language: "en-US"
3+
early_access: false
4+
reviews:
5+
profile: "chill"
6+
request_changes_workflow: false
7+
high_level_summary: true
8+
high_level_summary_in_walkthrough: true
9+
collapse_walkthrough: true
10+
poem: false
11+
review_status: true
12+
auto_review:
13+
enabled: true
14+
drafts: false
15+
chat:
16+
auto_reply: true

.github/workflows/ci.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,11 @@ jobs:
77
name: test
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v3
11-
- uses: actions/setup-node@v3
10+
- uses: actions/checkout@v4
11+
- uses: actions/setup-node@v4
1212
with:
13-
node-version: "18.x"
14-
registry-url: https://npm.pkg.github.com/
15-
- uses: actions/cache@v2
13+
node-version: "lts/*"
14+
- uses: actions/cache@v4
1615
id: yarn-unplugged-cache
1716
with:
1817
path: |

.github/workflows/publish.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,11 @@ jobs:
1111
permissions: write-all
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3
15-
- uses: actions/setup-node@v3
14+
- uses: actions/checkout@v4
15+
- uses: actions/setup-node@v4
1616
with:
17-
node-version: "18.x"
18-
registry-url: https://registry.npmjs.org
19-
- uses: actions/cache@v2
17+
node-version: "lts/*"
18+
- uses: actions/cache@v4
2019
id: yarn-unplugged-cache
2120
with:
2221
path: |

0 commit comments

Comments
 (0)