Add Chinese doc #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and check links in PRs | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@main | |
- name: Link Checker | |
id: lychee | |
uses: lycheeverse/lychee-action@v1.8.0 | |
with: | |
fail: true | |
- name: Use Node.js 17.8.x | |
uses: actions/setup-node@main | |
with: | |
node-version: 17.8.x | |
- name: Build devchat website | |
run: | | |
npm install | |
npm run build |