Skip to content

Commit fc52d03

Browse files
feat: build developer portal with interactive API explorer, SDK docs, and code samples (#923) (#1167)
* feat: build interactive contract dependency graph with vulnerability impact analysis (#922) * chore(frontend): update pnpm-lock.yaml for reactflow, dagre, zustand (#922) * fix(frontend): remove duplicate @playwright/test, move @types/dagre to devDeps, regenerate lockfile (#922) * fix(ci): upgrade pnpm to v10 to match packageManager field, fix cache key and Codecov guard (#922) * feat: build developer portal with interactive API explorer, SDK docs, and code samples (#923)
1 parent fe7fd22 commit fc52d03

47 files changed

Lines changed: 11528 additions & 12 deletions

Some content is hidden

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

.github/workflows/e2e.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Install pnpm
2626
uses: pnpm/action-setup@v4
2727
with:
28-
version: 9
28+
version: 10
2929

3030
- name: Get pnpm store directory
3131
shell: bash
@@ -36,7 +36,7 @@ jobs:
3636
uses: actions/cache@v4
3737
with:
3838
path: ${{ env.STORE_PATH }}
39-
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
39+
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('soroscan-frontend/pnpm-lock.yaml') }}
4040
restore-keys: |
4141
${{ runner.os }}-pnpm-store-
4242

.github/workflows/frontend-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Install pnpm
2222
uses: pnpm/action-setup@v4
2323
with:
24-
version: 9
24+
version: 10
2525

2626
- name: Get pnpm store directory
2727
shell: bash
@@ -32,7 +32,7 @@ jobs:
3232
uses: actions/cache@v4
3333
with:
3434
path: ${{ env.STORE_PATH }}
35-
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
35+
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('soroscan-frontend/pnpm-lock.yaml') }}
3636
restore-keys: |
3737
${{ runner.os }}-pnpm-store-
3838
@@ -57,7 +57,7 @@ jobs:
5757
retention-days: 30
5858

5959
- name: Upload coverage to Codecov
60-
if: always()
60+
if: always() && secrets.CODECOV_TOKEN != ''
6161
uses: codecov/codecov-action@v4
6262
with:
6363
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)