Refactor: Universal App Shell, Theming, Profile Pic Fix, and Shell Re… #200
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: Editor build | |
| on: | |
| push: | |
| branches: [ main ] | |
| paths-ignore: | |
| - 'a2a_agents/python/adk/samples/**' | |
| pull_request: | |
| paths-ignore: | |
| - 'a2a_agents/python/adk/samples/**' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - name: Install lib's deps | |
| working-directory: ./renderers/lit | |
| run: npm ci | |
| - name: Build lib | |
| working-directory: ./renderers/lit | |
| run: npm run build | |
| - name: Install editor deps | |
| working-directory: ./editor | |
| run: npm install | |
| - name: Build editor | |
| working-directory: ./editor | |
| run: npm run build |