Added NPM and PNPM installation in README.md (#1149) #1036
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: Check documentation | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'docs/**' | |
| - '.github/workflows/docs-build-check.yml' | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - 'docs/**' | |
| - '.github/workflows/docs-build-check.yml' | |
| workflow_dispatch: | |
| jobs: | |
| check: | |
| if: github.repository == 'software-mansion/react-native-executorch' | |
| runs-on: ubuntu-latest | |
| concurrency: | |
| group: docs-check-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| WORKING_DIRECTORY: docs | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Use Node.js 24 | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| - name: Install node dependencies | |
| working-directory: ${{ env.WORKING_DIRECTORY }} | |
| run: yarn install --immutable | |
| - name: Generate docs | |
| working-directory: ${{ env.WORKING_DIRECTORY }} | |
| run: yarn build |