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
25 changes: 25 additions & 0 deletions .github/workflows/typescript-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,33 +83,58 @@ jobs:
working-directory: sdk

steps:
# fetch-depth: 2 so paths-filter can diff against the parent commit on push events (on
# pull_request it uses the GitHub API and needs no history).
- uses: actions/checkout@v4
with:
fetch-depth: 2
# The devnet suite exercises the SDK against the Cairo contracts, so run it only when the SDK, the
# contracts, or this workflow itself change (the last so a change to the job below is exercised by
# its own PR). Client-only PRs skip it (the steps no-op and the job still reports green, keeping a
# required check satisfied) rather than being gated on the unrelated Cairo/devnet build.
- uses: dorny/paths-filter@v3
id: filter
with:
filters: |
devnet:
- 'sdk/**'
- 'packages/**'
- 'Scarb.toml'
- 'Scarb.lock'
Comment thread
ittaysw marked this conversation as resolved.
- '.github/workflows/typescript-ci.yml'

- uses: actions/setup-node@v4
if: steps.filter.outputs.devnet == 'true'
with:
node-version: '24'
cache: 'npm'
cache-dependency-path: sdk/package-lock.json

- name: Install Scarb
if: steps.filter.outputs.devnet == 'true'
uses: software-mansion/setup-scarb@v1
with:
scarb-version: "2.17.0"

- uses: software-mansion/setup-universal-sierra-compiler@v1
if: steps.filter.outputs.devnet == 'true'
with:
universal-sierra-compiler-version: "v2.8.0"

- name: Install starknet-devnet
if: steps.filter.outputs.devnet == 'true'
run: |
curl -L https://github.com/0xSpaceShard/starknet-devnet/releases/download/v0.8.0-rc.3/starknet-devnet-x86_64-unknown-linux-gnu.tar.gz | tar -xz -C /usr/local/bin
chmod +x /usr/local/bin/starknet-devnet

- name: Install npm dependencies
if: steps.filter.outputs.devnet == 'true'
run: npm ci

- name: Build Cairo contracts
if: steps.filter.outputs.devnet == 'true'
run: npm run scarb:build

- name: Run devnet tests
if: steps.filter.outputs.devnet == 'true'
run: npm run test:devnet
Loading