Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: SBOM rename
on: workflow_dispatch

jobs:
cyclone:
name: 'Build'
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 15.x]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test example
working-directory: ./example
run: |
npm install
npm run build --if-present
- name: CycloneDX Node.js Generate SBOM
uses: CycloneDX/gh-node-module-generatebom@v1.0.3
with:
path: ../../
output: ./bom.xml
Binary file added my-js-project.tar
Binary file not shown.
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,7 @@
},
"author": "Adem Cemil YALCIN",
"license": "ISC"
"dependencies": {
"bootstrap": "3.3.7"
}
}
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ You need to write the following commands on the terminal screen so that you can
```

The application is running on [localhost](http://localhost:3000).
change
change 2