chore(deps-dev): bump storybook from 7.6.17 to 8.4.7 #2377
Workflow file for this run
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: CI | |
on: [push] | |
env: | |
CI: true | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
uses: inrupt/typescript-sdk-tools/.github/workflows/[email protected] | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: ["20.x", "18.x"] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: npm | |
- run: npm ci | |
- run: npm run build | |
- run: npm run test | |
- name: Archive code coverage results | |
if: ${{ github.actor != 'dependabot[bot]' }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: code-coverage-report | |
path: coverage | |
sonar-scan: | |
if: ${{ github.actor != 'dependabot[bot]' }} | |
needs: [build] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
# Sonar analysis needs the full history for features like automatic assignment of bugs. If the following step | |
# is not included the project will show a warning about incomplete information. | |
fetch-depth: 0 | |
- uses: actions/download-artifact@v4 | |
with: | |
name: code-coverage-report | |
path: coverage/ | |
- uses: SonarSource/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |