From cba87e63dcb75de8e146095a1e51a79c7104162b Mon Sep 17 00:00:00 2001 From: Sneh Koul Date: Thu, 17 Oct 2024 15:20:09 -0500 Subject: [PATCH] use websocat --- .github/workflows/smoke-test.yml | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/.github/workflows/smoke-test.yml b/.github/workflows/smoke-test.yml index 1e145539..de706faf 100644 --- a/.github/workflows/smoke-test.yml +++ b/.github/workflows/smoke-test.yml @@ -35,15 +35,11 @@ jobs: with: submodules: recursive - # Install wscat for finality node smoke test to listen to sequencer feed - - name: Setup Node - uses: actions/setup-node@v4 - with: - node-version: 20 - cache: "npm" - - - name: Install wscat - run: npm install -g wscat + - name: Install websocat + run: | + wget https://github.com/vi/websocat/releases/download/v1.13.0/websocat_amd64-linux + chmod +x websocat_amd64-linux + sudo mv websocat_amd64-linux /usr/local/bin/websocat - name: Install Foundry uses: foundry-rs/foundry-toolchain@v1