From 50a20c996322b989921b627b8e8c23b9ce361ba8 Mon Sep 17 00:00:00 2001 From: Dmitriy Ryajov Date: Tue, 7 Mar 2023 18:09:24 -0600 Subject: [PATCH] use sh to run install scrip --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 25720cb..e3f14f1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,7 +26,7 @@ jobs: # as long as the file doesn't change we can reuse the circom binary. key: ${{ runner.os }}-circom-${{ hashFiles('./scripts/install-circom.sh') }} - name: Install circom if not cached - run: ./scripts/install-circom.sh + run: sh ./scripts/install-circom.sh - run: npm ci - name: Run the tests run: npm test