Skip to content

Commit

Permalink
testing sbom action
Browse files Browse the repository at this point in the history
  • Loading branch information
martinkuba committed Nov 9, 2023
1 parent f5ef8de commit 68c5964
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/sbom.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: SBOM
on:
push:
branches:
- main
pull_request:
merge_group:

jobs:
node-tests:
strategy:
fail-fast: false
runs-on: ubuntu-latest
env:
NPM_CONFIG_UNSAFE_PERM: true
steps:
- name: Checkout
uses: actions/checkout@v4

- uses: actions/setup-node@v3
with:
node-version: 18

- run: npm install -g npm@latest

- name: Bootstrap
run: npm ci

- name: Build 🔧
run: npm run compile

- uses: anchore/sbom-action@v0

0 comments on commit 68c5964

Please sign in to comment.