From d9bfcfae216b93265ac108e4b7696863e497da5a Mon Sep 17 00:00:00 2001 From: Yohan Nelson Date: Wed, 11 Sep 2024 13:22:32 +0530 Subject: [PATCH] remove storing artifacts update CI (#1007) * chore: update release trigger for CI * chore: create github release when tag is pushed * chore: secret to write github release * chore: update node version * chore: run CI on push or pull request includes test,lint,coverage,slither * chore: run CI on push to main and develop branches only * chore: run CI on push to release* branches also * chore: fix release ci and add update common ci * chore: fix release ci and add update common ci * chore: undo package json change * chore: node 20 * chore: test CI with node 20 * chore: test CI with node 16 * chore: update test * chore: update to hardhat from truffle * chore: fix lint and change prettier to warning * chore: revert rely on node 20 fallback on git action end * chore: keep prettier error * fix: skale network hardhat config changed to frame url * fix: remove storing atrifacts not required and v2 deprecated --- .github/workflows/ci.yml | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 30bac033..b89ef290 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,11 +39,6 @@ jobs: - name: Run tests run: | CI=true npm run test - - name: Store artifacts - uses: actions/upload-artifact@v2 - with: - name: test - path: test scenarios: runs-on: ubuntu-latest @@ -55,11 +50,6 @@ jobs: - name: Run scenarios run: | CI=true npm run scenarios - - name: Store artifacts - uses: actions/upload-artifact@v2 - with: - name: scenarios - path: scenarios lint: runs-on: ubuntu-latest @@ -70,11 +60,6 @@ jobs: action: retrieve - name: Run Lint run: npm run lint - - name: Store artifacts - uses: actions/upload-artifact@v2 - with: - name: lint - path: lint coverage: runs-on: ubuntu-latest @@ -89,11 +74,6 @@ jobs: uses: coverallsapp/github-action@v2 with: github-token: ${{ secrets.GITHUB_TOKEN }} - - name: Store artifacts - uses: actions/upload-artifact@v2 - with: - name: coverage - path: coverage slither: runs-on: ubuntu-latest