diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aa58f76..0395d3a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,27 +30,3 @@ jobs: run: cd _examples && make generate - name: Git diff of regenerated files run: cd _examples && make diff - - webrpc-interoperability: - strategy: - matrix: - webrpc-version: [v0.10.0, v0.11.3] - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 - with: - node-version: 18 - - name: Set up webrpc binary cache folder - uses: actions/cache@v3 - with: - key: webrpc-binaries - path: tests/bin - - name: Install dependencies - run: cd tests && npm install - - name: Download webrpc binaries - run: cd tests && ./download.sh ${{ matrix.webrpc-version }} bin/${{ matrix.webrpc-version }} - - name: Export path of webrpc binaries - run: cd tests && echo "$PWD/bin/${{ matrix.webrpc-version }}" >> $GITHUB_PATH - - name: Run interoperability tests - run: cd tests && ./test.sh