Skip to content
This repository was archived by the owner on Nov 28, 2025. It is now read-only.

Commit 250e089

Browse files
committed
Merge branch 'main' into chore/svm-add-anchor-0.31.1
2 parents f776909 + cb81b2c commit 250e089

File tree

201 files changed

+8388
-16775
lines changed

Some content is hidden

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

201 files changed

+8388
-16775
lines changed

.github/workflows/docker-push.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
documentation-image:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v4
1313
- name: Set image tag to timestamp and shortened commit hash
1414
run: |
1515
SHORT_HASH=$(echo ${{ github.sha }} | cut -c1-7)

.github/workflows/js-checks.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,14 @@ jobs:
77
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:
1313
node-version: 18
1414
cache: "npm"
1515
- name: Install deps
1616
run: npm ci
1717
- name: Lint
1818
run: npm run lint
19-
- name: Test
20-
run: npm run test
2119
- name: Build
2220
run: npm run build

.github/workflows/pre-commit.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ jobs:
99
pre-commit:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
13-
- uses: actions/setup-python@v2
14-
- uses: pre-commit/action@v2.0.3
12+
- uses: actions/checkout@v4
13+
- uses: actions/setup-python@v5
14+
- uses: pre-commit/action@v3.0.1

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Pyth Network Documentation
22

3-
This repository contains interactive documentation for the [Pyth Network](pyth.network) blockchain oracle.
3+
This repository contains interactive documentation for the [Pyth Network](https://www.pyth.network/) blockchain oracle.
44

55
## Documentation Format
66

__tests__/validateCodeSnippets.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -195,9 +195,3 @@ function validateCodeSnippets(directoryPath: string): void {
195195
}
196196
});
197197
}
198-
199-
describe("Validate code snippets", () => {
200-
// We only validate code snippets in the API reference.
201-
// However, we exclude Aptos for now because it's annoying (and doesn't seem worth it).
202-
validateCodeSnippets("./pages/price-feeds/api-reference/cosmwasm");
203-
});

0 commit comments

Comments
 (0)