mirror of
https://github.com/hwchase17/langchain
synced 2024-11-08 07:10:35 +00:00
22 lines
504 B
YAML
22 lines
504 B
YAML
|
name: Check Broken Links
|
||
|
|
||
|
on:
|
||
|
workflow_dispatch:
|
||
|
schedule:
|
||
|
- cron: '0 13 * * *'
|
||
|
|
||
|
jobs:
|
||
|
check-links:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v4
|
||
|
- name: Use Node.js 18.x
|
||
|
uses: actions/setup-node@v3
|
||
|
with:
|
||
|
node-version: 18.x
|
||
|
cache: "yarn"
|
||
|
- name: Install dependencies
|
||
|
run: cd ./docs && yarn install --immutable --mode=skip-build
|
||
|
- name: Check broken links
|
||
|
run: cd ./docs && yarn check-broken-links
|