feat: introducing 31 new react sdk samples #2
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: Manifest Validation CI | |
| on: | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - 'manifest.json' | |
| - 'scripts/validate-manifest.js' | |
| - '.github/workflows/manifest-ci.yml' | |
| - '.github/actions/validate-manifest/**' | |
| # Track React implementations (exclude docs and lock files) | |
| - 'react/**' | |
| - 'react-js/**' | |
| - '!**/README.md' | |
| - '!**/package-lock.json' | |
| - '!**/.prettierrc.json' | |
| push: | |
| branches: [main] | |
| paths: | |
| - 'manifest.json' | |
| - 'scripts/validate-manifest.js' | |
| - '.github/workflows/manifest-ci.yml' | |
| - '.github/actions/validate-manifest/**' | |
| # Track React implementations (exclude docs and lock files) | |
| - 'react/**' | |
| - 'react-js/**' | |
| - '!**/README.md' | |
| - '!**/package-lock.json' | |
| - '!**/.prettierrc.json' | |
| jobs: | |
| validate-manifest: | |
| name: Validate Manifest Structure | |
| runs-on: ubuntu-22.04-2cpu-8ram-75ssd | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| - name: Validate manifest | |
| uses: ./.github/actions/validate-manifest | |
| with: | |
| manifest-path: './manifest.json' | |
| strict-mode: 'true' |