Skip to content

Commit

Permalink
Merge branch 'QA-Test' into flyover-2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Luisfc68 committed Aug 12, 2024
2 parents 9391832 + 4646443 commit a207cb6
Show file tree
Hide file tree
Showing 38 changed files with 847 additions and 62 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@ jobs:
with:
node-version: '19.6.0'

- name: NPM Login
run: npm config set //npm.pkg.github.com/:_authToken ${{ secrets.GITHUB_TOKEN }}

- name: Install truffle
run: npm install -g truffle

Expand Down
30 changes: 30 additions & 0 deletions .github/workflows/slither.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Slither Analysis
on: [push]
jobs:
analyze:
runs-on: ubuntu-latest
permissions:
security-events: write
steps:
- uses: actions/checkout@v3

- name: Use Node.js 19.6.0
uses: actions/setup-node@v3
with:
node-version: '19.6.0'

- name: Install dependencies
run: npm ci

- name: Run Slither
uses: crytic/slither-action@v0.3.0
id: slither
with:
sarif: results.sarif
fail-on: none
target: .

- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: ${{ steps.slither.outputs.sarif }}
Loading

0 comments on commit a207cb6

Please sign in to comment.