Skip to content

Bump MudBlazor from 7.5.0 to 7.6.0 in /src/Cropper.Blazor in the dotnet group #1034

Bump MudBlazor from 7.5.0 to 7.6.0 in /src/Cropper.Blazor in the dotnet group

Bump MudBlazor from 7.5.0 to 7.6.0 in /src/Cropper.Blazor in the dotnet group #1034

Workflow file for this run

name: Build, run tests, code linting
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
on:
pull_request:
branches-ignore:
- master
jobs:
code-quality-check:
name: Check code quality
uses: CropperBlazor/Cropper.Blazor/.github/workflows/build-test-template.yml@dev
secrets: inherit
with:
publish-coverage: ${{ github.actor != 'dependabot[bot]' }}
code-linting:
name: Code linting
if: ${{ github.actor != 'dependabot[bot]' }}
runs-on: ubuntu-latest
needs: code-quality-check
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
# super-linter needs the full git history to get the
# list of files that changed across commits
fetch-depth: 0
- name: Super-Linter
uses: super-linter/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
OUTPUT_FOLDER: Reports
OUTPUT_DETAILS: detailed
VALIDATE_ALL_CODEBASE: true
VALIDATE_MARKDOWN: false
VALIDATE_JAVASCRIPT_PRETTIER: false
LOG_LEVEL: WARN
FILTER_REGEX_EXCLUDE: '(\W|^)(.*([.]min[.]css))($)|(\W|^)(.*([.]min[.]js))($)'
FILTER_REGEX_INCLUDE: /github/workspace/src/Cropper.Blazor/.*
JSCPD_CONFIG_FILE: '.jscpd.json'
HTML_FILE_NAME: '.htmlhintrc'
CSS_FILE_NAME: '.stylelintrc.json'