Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/publish-protocol-core.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,20 @@ jobs:
git config user.email "bot@quickswap.exchange"

# --- Dry-run path (preview only) ---
- name: Install pnpm (dry run)
if: inputs.dry_run
uses: pnpm/action-setup@b307475762933b98ed359c036b0e51f26b63b74b # v5.0.0
with:
version: 9

- name: Install dependencies (dry run)
if: inputs.dry_run
run: pnpm install --frozen-lockfile --ignore-scripts

- name: Build package (dry run)
if: inputs.dry_run
run: pnpm --filter @quickswap-defi/protocol-core build

- name: Dry run preview
if: inputs.dry_run
env:
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/publish-sdk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,20 @@ jobs:
git config user.email "bot@quickswap.exchange"

# --- Dry-run path (preview only) ---
- name: Install pnpm (dry run)
if: inputs.dry_run
uses: pnpm/action-setup@b307475762933b98ed359c036b0e51f26b63b74b # v5.0.0
with:
version: 9

- name: Install dependencies (dry run)
if: inputs.dry_run
run: pnpm install --frozen-lockfile --ignore-scripts

- name: Build package (dry run)
if: inputs.dry_run
run: pnpm --filter @quickswap-defi/sdk build

- name: Dry run preview
if: inputs.dry_run
env:
Expand Down
Loading