From 53127a72fd3b508818522937910a6b97e8534ee1 Mon Sep 17 00:00:00 2001 From: Ermal Kaleci Date: Fri, 1 Dec 2023 10:55:59 +0100 Subject: [PATCH] Update extrinsic-ordering-check-on-release.yml --- .../extrinsic-ordering-check-on-release.yml | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/.github/workflows/extrinsic-ordering-check-on-release.yml b/.github/workflows/extrinsic-ordering-check-on-release.yml index b1fccc3f44..54c50ba149 100644 --- a/.github/workflows/extrinsic-ordering-check-on-release.yml +++ b/.github/workflows/extrinsic-ordering-check-on-release.yml @@ -49,14 +49,6 @@ jobs: if: ${{ env.CHAIN == '' || env.VERSION == '' || env.PREVIOUS_VERSION == '' }} run: python .github/scripts/extrinsic_check_setup_env.py - - uses: actions/setup-node@v4 - with: - node-version: '18.x' - registry-url: 'https://registry.npmjs.org' - - - name: Install Yarn - run: npm install -g yarn - - name: Prepare output run: | echo "METADATA COMPARISON" >> output.txt @@ -73,11 +65,7 @@ jobs: - name: Compare the metadata run: | - git clone https://github.com/ermalkaleci/tools.git - cd tools - yarn install --immutable - yarn run:metadata ws://localhost:9944 ws://localhost:9955 >> ../output.txt - cd .. + docker run --network=host jacogr/polkadot-js-tools metadata ws://127.0.0.1:9944 ws://127.0.0.1:9955 >> output.txt sed -z -i 's/\n\n/\n/g' output.txt - name: Show result