Skip to content

update 2.1 docs

update 2.1 docs #13

Workflow file for this run

name: "build"
on:
pull_request:
branches: [ docusaurus ]
jobs:
Build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [19.5.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Npm install and build
run: |
npm install
npm run build --if-present
env:
CI: true