Skip to content

cyclone

cyclone #2

Workflow file for this run

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: sudo apt-get install python2
- 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