Remove manifest IDs and increase e2e test timeout #677
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: Sample CI | |
| on: [ push, pull_request ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build-ui: | |
| name: Build UI | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Setup Node | |
| uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0 | |
| with: | |
| node-version: 22 | |
| cache: 'npm' | |
| cache-dependency-path: 'ui/extensions/charlotte-toolkit-ui/package-lock.json' | |
| - name: Install dependencies | |
| run: npm ci | |
| working-directory: ui/extensions/charlotte-toolkit-ui | |
| - name: Run unit tests | |
| run: npm run test:ci | |
| working-directory: ui/extensions/charlotte-toolkit-ui | |
| - name: Build React app | |
| run: npm run build | |
| working-directory: ui/extensions/charlotte-toolkit-ui |