Adds missing title/desc to Bubble Map component (#198) #57
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run License Report | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: [ 'main' ] | |
env: | |
BUILD_NODE_VERSION: 20 | |
jobs: | |
run-sonar: | |
name: Run License report | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout project sources | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup NodeJS | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.BUILD_NODE_VERSION }} | |
- name: Run License report | |
run: npm ci && npm run license-report | |
- name: Archive code license report | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Licenses report | |
path: license-report.csv |