File tree Expand file tree Collapse file tree 1 file changed +3
-12
lines changed
Expand file tree Collapse file tree 1 file changed +3
-12
lines changed Original file line number Diff line number Diff line change 1010 - v5
1111
1212jobs :
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
43364437 with :
4538 token : ${{ secrets.CODECOV_TOKEN }}
4639 slug : iExecBlockchainComputing/PoCo
47-
4840 - name : Run static analysis with Slither
49415042 with :
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 :
You can’t perform that action at this time.
0 commit comments