docs: add eslint #60
Workflow file for this run
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: Test Documentation Build | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| paths: | |
| # Update on workflow change | |
| - ".github/workflows/test-docs-build.yml" | |
| # Update on docs change | |
| - "docs/**" | |
| # Update on code change (Api Reference) | |
| - "packages/react-native-video/src/**" | |
| jobs: | |
| test-docs-deploy: | |
| name: Test Documentation Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: ./.github/actions/setup-bun | |
| - name: Test build website | |
| run: bun run --cwd docs build |