We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af10cdb commit 07c374aCopy full SHA for 07c374a
.github/workflows/cyclone.yml
@@ -0,0 +1,21 @@
1
+name: cyclone
2
+on: push
3
+jobs:
4
+ build:
5
+ runs-on: ubuntu-latest
6
+ name: Install and build javascript
7
+ steps:
8
+ - uses: actions/checkout@v3
9
+ - uses: actions/setup-node@v3
10
+ with:
11
+ node-version: '20'
12
+ - run: npm install
13
+ - name: Create SBOM with CycloneDX
14
+ uses: CycloneDX/gh-node-module-generatebom@v1
15
16
+ output: './test.app.bom.xml'
17
+ - name: Upload SBOM artifact
18
+ uses: actions/upload-artifact@v3
19
20
+ name: sbom
21
+ path: ./test.app.bom.xml
0 commit comments