Skip to content

Commit 8fb6ba3

Browse files
committed
Apply review suggestions
1 parent 4beca81 commit 8fb6ba3

File tree

1 file changed

+3
-12
lines changed

1 file changed

+3
-12
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,41 +10,33 @@ on:
1010
- v5
1111

1212
jobs:
13-
coverage-and-static-analysis:
13+
default:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout
1717
uses: actions/checkout@v4
18-
1918
- name: Set up Nodejs
2019
uses: actions/setup-node@v3
2120
with:
2221
node-version: 20
2322
cache: 'npm' # Cache dependencies
24-
2523
- name: Install dependencies
2624
run: npm ci
27-
2825
- name: Build
2926
run: npm run build
30-
3127
- name: Check storage layout
3228
run: npm run test-storage-layout
33-
34-
# Basic deployment to make sure everything is ok.
35-
# Could be removed in the future if not relevant.
3629
- name: Run deployment
30+
# Basic deployment to make sure everything is ok.
31+
# Could be removed in the future if not relevant.
3732
run: npm run deploy
38-
3933
- name: Run coverage
4034
run: npm run coverage
41-
4235
- name: Upload coverage reports to Codecov
4336
uses: codecov/[email protected]
4437
with:
4538
token: ${{ secrets.CODECOV_TOKEN }}
4639
slug: iExecBlockchainComputing/PoCo
47-
4840
- name: Run static analysis with Slither
4941
uses: crytic/[email protected]
5042
with:
@@ -53,7 +45,6 @@ jobs:
5345
slither-args: --checklist --markdown-root ${{ github.server_url }}/${{ github.repository }}/blob/${{ github.sha }}/
5446
fail-on: none # TODO set this to high or other
5547
sarif: results.sarif
56-
5748
- name: Upload SARIF file
5849
uses: github/codeql-action/upload-sarif@v3
5950
with:

0 commit comments

Comments
 (0)