chore(deps): bump uuid from 11.1.0 to 14.0.0 #490
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: validate build | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| validate_build: | |
| name: validate build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Use default Node.js | |
| uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0 | |
| with: | |
| cache: npm | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Build and verify MAJC dist files | |
| run: |- | |
| npm run build | |
| - name: Install React Example dependencies | |
| run: npm ci | |
| working-directory: ./examples/react | |
| - name: Build and verify Example React App | |
| run: npm run build | |
| working-directory: ./examples/react |