Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into agustin-fix-babe-sm…
Browse files Browse the repository at this point in the history
…oke-test
  • Loading branch information
Agusrodri committed Feb 4, 2025
2 parents 9fd2e4a + fc0f70e commit 566b921
Show file tree
Hide file tree
Showing 6 changed files with 350 additions and 836 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -702,6 +702,19 @@ jobs:
uses: ./.github/workflow-templates/zombienet-tests
with:
test_name: ${{ matrix.test_name }}
zombienet-merge-queue-results:
if: ${{ always() }}
runs-on: ubuntu-latest
name: Results for zombienet-tests-merge-queue
needs: [zombienet-tests-merge-queue]
steps:
- run: |
result="${{ needs.zombienet-tests-merge-queue.result}}"
if [[ $result == "success" || $result == "skipped" ]]; then
exit 0
else
exit 1
fi
zombienet-tests-merge-queue-bridge-e2e:
if: ${{ github.event_name == 'merge_group' }}
runs-on: self-hosted
Expand Down
64 changes: 64 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
{
"name": "tanssi",
"version": "1.0.0",
"description": "Tanssi monorepo",
"private": "true",
"type": "module",
"workspaces": [
"test",
"typescript-api"
],
"scripts": {
"clean-all": "rm -rf node_modules && pnpm -r clean",
"build": "pnpm -r build",
"postinstall": "pnpm build"
},
"dependencies": {
"@polkadot/api": "15.4.1",
"@polkadot/api-augment": "15.4.1",
"@polkadot/api-base": "15.4.1",
"@polkadot/api-derive": "15.4.1",
"@polkadot/rpc-augment": "15.4.1",
"@polkadot/rpc-core": "15.4.1",
"@polkadot/rpc-provider": "15.4.1",
"@polkadot/typegen": "15.4.1",
"@polkadot/types": "15.4.1",
"@polkadot/types-augment": "15.4.1",
"@polkadot/types-codec": "15.4.1",
"@polkadot/types-create": "15.4.1",
"@polkadot/types-known": "15.4.1",
"@polkadot/types-support": "15.4.1",
"@polkadot/keyring": "13.3.1",
"@polkadot/util": "13.3.1",
"@polkadot/util-crypto": "13.3.1"

},
"devDependencies": {
"@types/node": "22.10.5"
},
"pnpm": {
"overrides": {
"@polkadot/api": "15.4.1",
"@polkadot/api-augment": "15.4.1",
"@polkadot/api-base": "15.4.1",
"@polkadot/api-derive": "15.4.1",
"@polkadot/rpc-augment": "15.4.1",
"@polkadot/rpc-core": "15.4.1",
"@polkadot/rpc-provider": "15.4.1",
"@polkadot/typegen": "15.4.1",
"@polkadot/types": "15.4.1",
"@polkadot/types-augment": "15.4.1",
"@polkadot/types-codec": "15.4.1",
"@polkadot/types-create": "15.4.1",
"@polkadot/types-known": "15.4.1",
"@polkadot/types-support": "15.4.1",
"@polkadot/keyring": "13.3.1",
"@polkadot/util": "13.3.1",
"@polkadot/util-crypto": "13.3.1",
"inquirer": "9.2.16"
}
},
"keywords": [],
"author": "",
"license": "ISC"
}
Loading

0 comments on commit 566b921

Please sign in to comment.