feat(docs): add markdown to Storyblok richtext conversion documentation #352
  
    
      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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| paths-ignore: | |
| - "**/*.md" | |
| - "docs/**" | |
| pull_request: | |
| branches: [main] | |
| paths-ignore: | |
| - "**/*.md" | |
| - "docs/**" | |
| env: | |
| HUSKY: 0 | |
| NX_REJECT_UNKNOWN_LOCAL_CACHE: 0 | |
| jobs: | |
| build: | |
| environment: test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/setup-node | |
| - name: Check | |
| run: pnpm nx run-many --target=build,lint,test,test:types --parallel=3 -p="tag:npm:public" | |
| env: | |
| VITE_ACCESS_TOKEN: ${{ secrets.VITE_ACCESS_TOKEN }} | |
| VITE_SPACE_ID: ${{ vars.VITE_SPACE_ID }} | |
| - name: Check Licenses | |
| run: pnpm nx exec -p="tag:npm:public" -- pnpm -w monoblok license check \$NX_PROJECT_NAME |