We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a57506f commit 66e2fcdCopy full SHA for 66e2fcd
.github/workflows/sachinh-test.yml
@@ -1,8 +1,25 @@
1
-name: hello-world
2
-on: push
+name: Generate SBOM
+on: workflow_dispatch
3
+
4
jobs:
- my-job:
5
+ setup-node:
6
runs-on: ubuntu-latest
7
8
steps:
- - name: my-step
- run: echo "Hello World!"
9
+ - name: Checkout repository
10
+ uses: actions/checkout@v4
11
12
+ - name: Setup Node.js 22.x
13
+ uses: actions/setup-node@v4
14
+ with:
15
+ node-version: '22.x'
16
17
+ - name: Verify Node.js installation
18
+ run: |
19
+ node --version
20
+ npm --version
21
22
+ - name: Install quilt
23
24
+ npm install -g quilt
25
+ quilt --version
0 commit comments