From 47596b7d6cc221f49165cae0457ec2f8303e8c02 Mon Sep 17 00:00:00 2001 From: Jake Scaltreto Date: Fri, 19 Jan 2024 13:56:18 -0500 Subject: [PATCH] chore(ci): implement code scanning --- .github/workflows/ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9eada64..4d40a7c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,3 +25,13 @@ jobs: - run: npm run lint - run: npm run type-check - run: npm run test + + scan: + needs: lint_and_test + if: github.event_name == 'pull_request' + uses: circlefin/circle-public-github-workflows/.github/workflows/pr-scan.yaml@v1 + + release-sbom: + needs: lint_and_test + if: github.event_name == 'push' + uses: circlefin/circle-public-github-workflows/.github/workflows/attach-release-assets.yaml@v1