aFlyBird0 commented on code in PR #494: URL: https://github.com/apache/incubator-devlake-website/pull/494#discussion_r1174501037
########## .github/workflows/link-schedule.yaml: ########## @@ -0,0 +1,48 @@ +name: Build workflow + +on: + workflow_dispatch: + schedule: + - cron: "0 0 * * *" + +jobs: + build-and-check-links: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@main + + - name: Use Node.js 17.8.x + uses: actions/setup-node@main + with: + node-version: 17.8.x + - name: Build Docusaurus website + run: | + npm install + npm run build + - name: Link Checker + uses: lycheeverse/[email protected] Review Comment: Got it, thank you. I'll use cmd line to refactor it and send a new review request after finished. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
