Skip to content

hello-world

hello-world #3

Workflow file for this run

name: Generate SBOM
on: workflow_dispatch
jobs:
setup-node:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js 22.x
uses: actions/setup-node@v4
with:
node-version: '22.x'
- name: Verify Node.js installation
run: |
node --version
npm --version
- name: Install quilt
run: |
npm install -g quilt
quilt --version