Skip to content

Commit

Permalink
cyclone
Browse files Browse the repository at this point in the history
  • Loading branch information
samigt committed Oct 16, 2024
1 parent af10cdb commit 07c374a
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/cyclone.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: cyclone
on: push
jobs:
build:
runs-on: ubuntu-latest
name: Install and build javascript
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '20'
- run: npm install
- name: Create SBOM with CycloneDX
uses: CycloneDX/gh-node-module-generatebom@v1
with:
output: './test.app.bom.xml'
- name: Upload SBOM artifact
uses: actions/upload-artifact@v3
with:
name: sbom
path: ./test.app.bom.xml

0 comments on commit 07c374a

Please sign in to comment.