Added landing page ci cd workflows #1
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: Live-debugger landing page build check | |
| on: | |
| pull_request: | |
| paths: | |
| - ".github/workflows/landing-build-check.yml" | |
| - landing/** | |
| merge_group: | |
| branches: | |
| - main | |
| workflow_call: | |
| workflow_dispatch: | |
| jobs: | |
| live-debugger-landing-build-check: | |
| if: github.repository == 'software-mansion/live-debugger' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: "true" | |
| - name: Use Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| cache: "npm" | |
| - name: Install monorepo node dependencies | |
| working-directory: landing | |
| run: npm install | |
| - name: Build Reanimated docs | |
| working-directory: landing | |
| run: npm build |