fixed link on integrate landing page (#1486) #2057
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: CI | |
on: | |
workflow_dispatch: | |
pull_request: | |
types: [opened, reopened, synchronize] | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
jobs: | |
build-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '19' | |
- name: Build docusaurus crowdin docs | |
run: | | |
cd website && yarn | |
yarn crowdin:build | |
yarn build | |
env: | |
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} | |
NODE_OPTIONS: --max-old-space-size=8192 |