8000 Add Data Transmission category on welcome page · yomidevs/yomitan@32f23ab · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Note potential data being sent on settings and add audio toggle to welcome page #1250

Note potential data being sent on settings and add audio toggle to welcome page

Note potential data being sent on settings and add audio toggle to welcome page #1250

Workflow file for this run

name: Broken Link Checker
permissions:
contents: read
# runs on prs containing markdown or html changes, as well as every monday at 9 am
on:
pull_request:
paths:
- "**.md"
- "**.html"
schedule:
- cron: "0 9 * * 1"
jobs:
link-checker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: npm ci
- name: Build Legal
run: npm run license-report:html
- uses: lycheeverse/lychee-action@v2.3.0
with:
fail: true
jobSummary: false
args: --exclude-path 'node_modules' --verbose --no-progress './**/*.md' './**/*.html' './**/*.rst'
0