Skip to content

Commit 03b870b

Browse files
authored
Merge branch 'main' into rwa-v8-ff
2 parents 225d399 + 7c4b47f commit 03b870b

File tree

120 files changed

+5288
-547
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

120 files changed

+5288
-547
lines changed

.github/scripts/data/baseline.json

Lines changed: 77 additions & 1 deletion
Large diffs are not rendered by default.

.github/workflows/chainlink-automation-config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
working-directory: ./
1818
steps:
1919
- name: Checkout Repo
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121
- name: Install Dependencies
2222
run: npm i
2323
- name: Compare current config with the deployed one

.github/workflows/chains-metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
working-directory: ./
1818
steps:
1919
- name: Checkout Repo
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121
- name: Install Dependencies
2222
run: npm i
2323
- name: Compare current chains metadata with the source

.github/workflows/detect-new-data.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
steps:
3232
# Step 1: Check out the repository code
3333
- name: Checkout Repo
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v5
3535
with:
3636
fetch-depth: 0 # Fetch all history for git operations
3737

@@ -67,7 +67,7 @@ jobs:
6767
steps:
6868
# Step 1: Check out repository code
6969
- name: Checkout Repo
70-
uses: actions/checkout@v4
70+
uses: actions/checkout@v5
7171
with:
7272
fetch-depth: 0 # Fetch all history for git operations
7373

.github/workflows/detect-new-tokens.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
runs-on: ubuntu-latest
4646
steps:
4747
- name: Checkout Repo
48-
uses: actions/checkout@v4
48+
uses: actions/checkout@v5
4949
with:
5050
fetch-depth: 0 # Fetch all history for git operations
5151
- name: Setup Node.js
@@ -76,7 +76,7 @@ jobs:
7676
runs-on: ubuntu-latest
7777
steps:
7878
- name: Checkout Repo
79-
uses: actions/checkout@v4
79+
uses: actions/checkout@v5
8080
with:
8181
fetch-depth: 0 # Fetch all history for git operations
8282
- name: Setup Node.js

.github/workflows/external-links.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
working-directory: ./
1515
steps:
1616
- name: Checkout Repo
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818
- name: Install Dependencies
1919
run: npm i
2020
- name: Run external link checks

.github/workflows/test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Checkout Repo
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v5
2222

2323
- name: Setup Node.js
2424
uses: actions/setup-node@v4
@@ -49,7 +49,7 @@ jobs:
4949
runs-on: ubuntu-latest
5050
steps:
5151
- name: Checkout Repo
52-
uses: actions/checkout@v4
52+
uses: actions/checkout@v5
5353

5454
- name: Setup Node.js
5555
uses: actions/setup-node@v4
@@ -107,7 +107,7 @@ jobs:
107107
runs-on: ubuntu-latest
108108
steps:
109109
- name: Checkout Repo
110-
uses: actions/checkout@v4
110+
uses: actions/checkout@v5
111111

112112
- name: Setup Node.js
113113
uses: actions/setup-node@v4
@@ -150,7 +150,7 @@ jobs:
150150
runs-on: ubuntu-latest
151151
steps:
152152
- name: Checkout Repo
153-
uses: actions/checkout@v4
153+
uses: actions/checkout@v5
154154

155155
- name: Setup Node.js
156156
uses: actions/setup-node@v4
@@ -186,7 +186,7 @@ jobs:
186186
runs-on: ubuntu-latest
187187
steps:
188188
- name: Checkout Repo
189-
uses: actions/checkout@v4
189+
uses: actions/checkout@v5
190190

191191
- name: Setup Node.js
192192
uses: actions/setup-node@v4
@@ -234,7 +234,7 @@ jobs:
234234

235235
steps:
236236
- name: Checkout Repo
237-
uses: actions/checkout@v4
237+
uses: actions/checkout@v5
238238

239239
- name: Setup Node.js ${{ matrix.node-version }}
240240
uses: actions/setup-node@v4

.github/workflows/update-algolia-index.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
working-directory: ./
1717
steps:
1818
- name: Checkout Repo
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020
- name: Install Dependencies
2121
run: npm i
2222
- name: Build

astro.config.ts

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,25 @@ export default defineConfig({
107107
adapter: vercel(),
108108
vite: {
109109
plugins: [yaml()],
110+
build: {
111+
target: "esnext", // Use latest ES features, no transpilation for modern browsers
112+
// Optimize CSS delivery
113+
cssMinify: true,
114+
// Increase the threshold for inlining assets to reduce render-blocking CSS
115+
assetsInlineLimit: 20000, // Inline CSS files up to 20KB to eliminate render-blocking
116+
// Removed manual chunking to prevent serverless function bloat
117+
// rollupOptions: {
118+
// output: {
119+
// manualChunks: ...
120+
// }
121+
// },
122+
},
123+
esbuild: {
124+
target: "esnext", // Match build target for consistency
125+
},
126+
css: {
127+
devSourcemap: false,
128+
},
110129
},
111130
legacy: {
112131
collections: false,

0 commit comments

Comments
 (0)