From d7773058bbb9c32329a36ffecd0cea974d12e786 Mon Sep 17 00:00:00 2001 From: Sergey <2901744+evercoinx@users.noreply.github.com> Date: Thu, 9 Jan 2025 12:21:10 +0100 Subject: [PATCH] Update github ci workflow --- .github/workflows/ci.yaml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 56bd0fa7..6daf4c88 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -5,8 +5,10 @@ on: branches: - "**" jobs: - test: + ci: runs-on: ubuntu-latest + env: + ETHEREUM_API_KEY: ${{ secrets.ETHEREUM_API_KEY }} strategy: matrix: node-version: ["20.15.x"] @@ -54,11 +56,12 @@ jobs: - name: Check contracts with linter run: npm run check - # - name: Analyze contracts with static analyzer - # run: npm run analyze:ci + - name: Analyze contracts with static analyzer + if: false + run: npm run analyze:ci - # - name: Run unit tests - # run: npm run test:ci + - name: Run unit tests + run: npm run test:ci - name: Deploy contracts into hardhat network run: make hardhat