Skip to content

Introduce pub workspace and Flutter 3.27 #186

Introduce pub workspace and Flutter 3.27

Introduce pub workspace and Flutter 3.27 #186

Workflow file for this run

name: Lint
on:
workflow_dispatch: {}
push:
paths:
- .github/workflows/lint.yaml
- '**.md'
pull_request_target:
paths:
- .github/workflows/lint.yaml
- '**.md'
jobs:
lint:
name: Lint Markdown URLs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: tibdex/github-app-token@v2
id: generate-token
with:
app_id: ${{ secrets.AUTO_MAID_APP_ID }}
private_key: ${{ secrets.AUTO_MAID_PRIVATE_KEY }}
- uses: lycheeverse/lychee-action@v2
with:
args: --base . --no-progress './**/*.md'
token: ${{ steps.generate-token.outputs.token }}