Normalize Tauri wrapper arguments #12
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: CI | |
| on: | |
| push: | |
| branches: [main, master, app-dev] | |
| pull_request: | |
| branches: [main, master, app-dev] | |
| jobs: | |
| build-and-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: npm | |
| cache-dependency-path: | | |
| package-lock.json | |
| ui/package-lock.json | |
| - name: Install root dependencies | |
| run: npm ci | |
| - name: Install UI dependencies | |
| run: npm --prefix ui ci | |
| - name: Run test suite | |
| run: npm test | |
| - name: Build desktop UI bundle | |
| run: npm run build |