diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 75ab143..524993a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,6 +1,8 @@ name: Continuous Integration on: pull_request: + push: + branches: [master] jobs: test: name: 'Test' @@ -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