From 53c6522126219f0c3e8bf999324b8b005969c22e Mon Sep 17 00:00:00 2001 From: Peter Date: Sat, 18 May 2024 09:41:11 +0200 Subject: [PATCH] Fix CI commands --- .github/workflows/api.yml | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/.github/workflows/api.yml b/.github/workflows/api.yml index 85219ce1b..8efcab3c8 100644 --- a/.github/workflows/api.yml +++ b/.github/workflows/api.yml @@ -48,10 +48,9 @@ jobs: key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }} - name: Start Hardhat RPC - working-directory: ./apps/api/src/app/hardhat run: | - npx hardhat node --hostname 0.0.0.0 > /dev/null & - npx hardhat run scripts/deploy.ts --network localhost + yarn hardhat > /dev/null & + yarn hardhat-deploy - name: Start Safe Transaction Service run: | @@ -70,13 +69,13 @@ jobs: -T api \ npx nx run api:test --verbose - - name: SonarCloud Scan - uses: SonarSource/sonarcloud-github-action@master - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} - with: - projectBaseDir: apps/api + # - name: SonarCloud Scan + # uses: SonarSource/sonarcloud-github-action@master + # env: + # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + # SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} + # with: + # projectBaseDir: apps/api bumpVersion: name: 'Bump Version on develop'