Add web editor #17
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: Build Web | |
| on: | |
| pull_request: | |
| branches: ["main"] | |
| paths: | |
| - "web/**" | |
| - ".github/workflows/build-web.yml" | |
| permissions: | |
| contents: write | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| - name: Install shared-utils dependencies | |
| run: npm install --workspace=npm-packages/shared-utils | |
| - name: Build shared-utils | |
| run: npm run shared-utils-build | |
| - name: Install capacitor-plugin dependencies | |
| run: npm install --workspace=capacitor-plugin | |
| - name: Build capacitor-plugin | |
| run: npm run capacitor-plugin-build | |
| - name: Install web dependencies | |
| run: npm install --workspace=web | |
| - name: Build web app | |
| run: | | |
| npm run web-build |