Skip to content

feat: add gluten and celeborn #415

feat: add gluten and celeborn

feat: add gluten and celeborn #415

Workflow file for this run

name: Byzer Doc PR Check
on:
pull_request:
branches:
- main
jobs:
checking:
name: PR Check
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
# Checkout the repository
- name: Checkout
uses: actions/checkout@v2
- name: Setup Env
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm install -g markdown-link-check@3.9.0
- name: Run Checking Script
run: ./.github/scripts/ci_checking.sh
shell: bash