Skip to content

feat: add support for sign-in with id token #796

feat: add support for sign-in with id token

feat: add support for sign-in with id token #796

name: Check for broken links
on:
pull_request:
branches:
- main
- main-null-unsafe
# schedule:
# Run the quality job at 4am every day
# - cron: '0 4 * * *'
jobs:
link-check:
runs-on: ubuntu-latest
env:
LYCHEE_OUT: tmp/lychee_results.md
GITHUB_TOKEN: ${{ github.token }}
steps:
- uses: actions/checkout@master
- name: Check links
id: check_links
uses: lycheeverse/[email protected]
with:
format: detailed
fail: true # Fail the action if the link check fails
args: >
--config .github/workflows/link_check_config.lychee.toml
**/*.md
**/*.yaml
**/*.dart
--github-token $GITHUB_TOKEN