Skip to content

Commit

Permalink
chore(ci): implement code scanning (#207)
Browse files Browse the repository at this point in the history
Implement PR code scanning and SBOM on release.
  • Loading branch information
jscaltreto authored Jan 22, 2024
1 parent ecc17e8 commit f1500f9
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,13 @@ jobs:
- run: npm run lint
- run: npm run type-check
- run: npm test

scan:
needs: lint
if: github.event_name == 'pull_request'
uses: circlefin/circle-public-github-workflows/.github/workflows/pr-scan.yaml@v1

release-sbom:
needs: lint
if: github.event_name == 'push'
uses: circlefin/circle-public-github-workflows/.github/workflows/attach-release-assets.yaml@v1

0 comments on commit f1500f9

Please sign in to comment.