diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 00000000..521069d0 --- /dev/null +++ b/.github/workflows/main.yml @@ -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 diff --git a/my-js-project.tar b/my-js-project.tar new file mode 100644 index 00000000..a4c0c8ff Binary files /dev/null and b/my-js-project.tar differ diff --git a/package.json b/package.json index d479a2f9..23a34822 100644 --- a/package.json +++ b/package.json @@ -8,4 +8,7 @@ }, "author": "Adem Cemil YALCIN", "license": "ISC" + "dependencies": { + "bootstrap": "3.3.7" + } } diff --git a/readme.md b/readme.md index 17e4f4ce..a6d86d12 100644 --- a/readme.md +++ b/readme.md @@ -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