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
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
rust:
needs: codegen
name: Rust workspace
timeout-minutes: 30
runs-on: ubuntu-latest
env:
RUSTFLAGS: "-D warnings"
Expand Down Expand Up @@ -69,6 +70,7 @@ jobs:

wasm-provider:
name: truapi-provider (wasm browser tests)
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
Expand All @@ -90,6 +92,7 @@ jobs:

licenses:
name: Dependency licenses
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
Expand All @@ -103,6 +106,7 @@ jobs:

codegen:
name: Codegen
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
Expand Down Expand Up @@ -161,6 +165,7 @@ jobs:
ios-bindings:
name: iOS bindings (uniffi)
needs: codegen
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
Expand Down Expand Up @@ -194,6 +199,7 @@ jobs:

changes:
name: Change filter
timeout-minutes: 10
runs-on: ubuntu-latest
outputs:
sdk_swift: ${{ steps.filter.outputs.sdk_swift }}
Expand Down Expand Up @@ -412,6 +418,7 @@ jobs:

ts-client:
name: "@parity/truapi"
timeout-minutes: 10
runs-on: ubuntu-latest
needs: codegen
env:
Expand Down Expand Up @@ -449,6 +456,7 @@ jobs:

ts-host:
name: "@parity/truapi-host"
timeout-minutes: 10
runs-on: ubuntu-latest
needs: codegen
env:
Expand Down Expand Up @@ -482,6 +490,7 @@ jobs:

ts-debugger:
name: "@parity/truapi-debugger"
timeout-minutes: 10
runs-on: ubuntu-latest
needs: codegen
env:
Expand Down Expand Up @@ -521,6 +530,7 @@ jobs:

playground:
name: Playground (build + lint + unit)
timeout-minutes: 10
runs-on: ubuntu-latest
needs: ts-client
env:
Expand Down Expand Up @@ -574,6 +584,7 @@ jobs:

explorer:
name: Explorer (build + lint)
timeout-minutes: 10
runs-on: ubuntu-latest
needs: ts-client
env:
Expand Down Expand Up @@ -717,6 +728,7 @@ jobs:
-color
release-guard:
name: Release guard
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
Expand Down Expand Up @@ -791,6 +803,7 @@ jobs:
name: Changeset guard
needs: changes
if: github.event_name == 'pull_request' && needs.changes.outputs.needs_changeset == 'true'
timeout-minutes: 10
runs-on: ubuntu-latest
permissions:
pull-requests: read
Expand Down Expand Up @@ -823,6 +836,7 @@ jobs:
ci-status:
name: CI Status
if: always()
timeout-minutes: 10
runs-on: ubuntu-latest
# Writing the sticky summary needs more than the workflow's read-only
# default. Nothing else here writes anything.
Expand Down
Loading