chore(deps): bump actions/checkout from 4.1.1 to 4.1.5 #72
Workflow file for this run
This file contains hidden or 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: analyze | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "lib/**" | |
- "test/**" | |
- "example/**" | |
- "pubspec.yaml" | |
- ".github/workflows/analyze.yaml" | |
jobs: | |
analysis: | |
name: 🕵️ Analyze | |
runs-on: ubuntu-latest | |
if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }} | |
timeout-minutes: 5 | |
steps: | |
- name: Checks-out repository | |
uses: actions/checkout@v4.1.5 | |
- name: Link Checker | |
uses: lycheeverse/lychee-action@v1.9.3 | |
with: | |
args: --verbose --no-progress './**/*.md' './**/*.html' './**/*.dart' | |
format: markdown | |
jobSummary: true | |
fail: true | |
- name: Check the spelling | |
uses: check-spelling/check-spelling@v0.0.21 | |
if: false # Disabled for now | |
with: | |
config: .github/workflows/actions_settings/check-spelling | |
check_file_names: 1 | |
only_check_changed_files: 1 | |
check_extra_dictionaries: "" | |
extra_dictionaries: | |
cspell:html/html.txt | |
cspell:dart/src/dart.txt | |
cspell:filetypes/filetypes.txt | |
- name: Setup Dart | |
uses: dart-lang/setup-dart@v1.6.0 | |
- name: Install Dependencies | |
run: dart pub get --no-example | |
- name: Analyze Code | |
uses: ValentinVignal/action-dart-analyze@v0.16 | |
with: | |
fail-on: 'format' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
format: true | |
- name: Publish - dry run | |
if: ${{ github.event_name == 'pull_request' }} | |
run: dart pub publish --dry-run | |
- name: Calculate PANA Score | |
uses: axel-op/dart-package-analyzer@v3 | |
id: analysis | |
with: | |
githubToken: ${{ secrets.GITHUB_TOKEN }} | |
- name: Check Pub Score | |
env: | |
TOTAL: ${{ steps.analysis.outputs.total }} | |
TOTAL_MAX: ${{ steps.analysis.outputs.total_max }} | |
run: | | |
PERCENTAGE=$(( $TOTAL * 100 / $TOTAL_MAX )) | |
if (( $PERCENTAGE < 92 )) | |
then | |
echo Score too low! | |
exit 1 | |
fi | |
- name: Dart Code Metrics | |
run: dart run dart_code_metrics:metrics --disable-sunset-warning --fatal-style --fatal-performance --fatal-warnings --reporter=github lib test example |