diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d9bb198..e45b234 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -24,16 +24,26 @@ jobs: node-version: 20.x - name: Install dependencies - run: node ci --function installDeps + run: | + set -e + node ci --function installDeps - name: Run linter - run: node ci --function lint + run: | + set -e + node ci --function lint - name: Run duplications check - run: node ci --function checksDuplications + run: | + set -e + node ci --function checksDuplications - name: Run smart contracts unit tests - run: node ci --function smartContractsUnitTest + run: | + set -e + node ci --function smartContractsUnitTest - name: Run scripts unit tests - run: node ci --function scriptsUnitTest + run: | + set -e + node ci --function scriptsUnitTest