Skip to content

Commit 07c374a

Browse files
committed
cyclone
1 parent af10cdb commit 07c374a

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/cyclone.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
16+
output: './test.app.bom.xml'
17+
- name: Upload SBOM artifact
18+
uses: actions/upload-artifact@v3
19+
with:
20+
name: sbom
21+
path: ./test.app.bom.xml

0 commit comments

Comments
 (0)