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 dc9427f commit 437582a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/pull_request_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,7 @@ jobs:
run: yarn build
- name: Running unit test's
run: yarn test

scan:
needs: lint
uses: circlefin/circle-public-github-workflows/.github/workflows/pr-scan.yaml@v1
8 changes: 8 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ jobs:
runs-on: ubuntu-latest
outputs:
did-create-release: ${{ steps.release.outputs.release_created }}
release-tag: ${{ steps.release.outputs.tag_name }}
steps:
- uses: google-github-actions/release-please-action@v3
id: release
Expand All @@ -26,3 +27,10 @@ jobs:
if: needs.release-please.outputs.did-create-release
uses: ./.github/workflows/npm-publish.yml
secrets: inherit

release-sbom:
needs: release-please
if: needs.release-please.outputs.did-create-release
uses: circlefin/circle-public-github-workflows/.github/workflows/attach-release-assets.yaml@v1
with:
release_tag: ${{ needs.release-please.outputs.release-tag }}

0 comments on commit 437582a

Please sign in to comment.