Skip to content

Commit

Permalink
chore(ci): implement code scanning
Browse files Browse the repository at this point in the history
  • Loading branch information
jscaltreto committed Jan 17, 2024
1 parent 470ed51 commit f9e2776
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Continuous Integration
on:
pull_request:
push:
branches: [master]
jobs:
test:
name: 'Test'
Expand All @@ -25,3 +27,13 @@ jobs:

- name: Run Tests
run: yarn test:unit:ci

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

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

0 comments on commit f9e2776

Please sign in to comment.