diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index fc1aeb2..1a1cd05 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -14,7 +14,8 @@ jobs: node-version: 20 cache: npm - - run: npm install + - run: npm install --ignore-scripts + - run: npm run postinstall - run: npm test - run: curl https://raw.githubusercontent.com/Tenderly/tenderly-cli/master/scripts/install-linux.sh | bash diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 3db26dd..c8101cf 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -13,5 +13,6 @@ jobs: node-version: 20 cache: npm - - run: npm install + - run: npm install --ignore-scripts + - run: npm run postinstall - run: npm test