chore: update update-docs-ci #1
This file contains hidden or 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: Update Docs CI | |
| on: | |
| push: | |
| branches: | |
| - docs/update-translations | |
| jobs: | |
| translate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Checkout the repository first to access local actions | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 1 | |
| - name: Setup Tools | |
| # After pnpm install, apps/docs will execute postinstall: fumadocs-mdx | |
| # Which will generated MDX types (check if the docs frontmatter is correct) | |
| uses: ./.github/actions/setup |