From 5db5c2b6acb3c5ac140399697b26f035a1cc4db0 Mon Sep 17 00:00:00 2001 From: Mati Date: Fri, 26 May 2023 23:59:26 -0300 Subject: [PATCH] Fix CI --- .github/workflows/code-quality.yml | 3 ++- foundry.toml | 2 -- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml index a7193d1..fc04a7d 100644 --- a/.github/workflows/code-quality.yml +++ b/.github/workflows/code-quality.yml @@ -13,6 +13,7 @@ jobs: FORCE_COLOR: 1 REPORT_GAS: true COIN_MARKETCAP_API_KEY: ${{ secrets.COIN_MARKETCAP_API_KEY }} + NODE_ENV: test steps: - name: Checkout code uses: actions/checkout@v3 @@ -24,7 +25,7 @@ jobs: - name: Install dependencies run: npm ci --ignore-scripts - name: Run tests - run: npm test + run: npx hardhat test fuzzing: runs-on: ubuntu-latest diff --git a/foundry.toml b/foundry.toml index f169191..9100bd5 100644 --- a/foundry.toml +++ b/foundry.toml @@ -9,10 +9,8 @@ solc = '0.8.18' [fuzz] runs = 10_000 depth = 10 -verbosity = 3 # Extreme Fuzzing CI Profile [profile.ci] runs = 10_000 depth = 100 -verbosity = 3