Skip to content
Merged
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
23 changes: 23 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,26 @@ jobs:

- name: Build program and clients
run: just build

webapp-build:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 1

- uses: ./.github/actions/setup
with:
install-rust: 'false'
install-solana: 'false'
install-just: 'false'
enable-rust-cache: 'false'

- name: Generate and build TypeScript client
run: |
pnpm run generate-clients
pnpm --filter @solana/subscriptions build

- name: Build webapp
run: pnpm --filter webapp build
Comment thread
dev-jodee marked this conversation as resolved.
Loading