refactor: docked PlanCorridorScreen layout, geocoding SQLite db scali… #72
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: [master, main] | |
| pull_request: | |
| branches: [master, main] | |
| jobs: | |
| mobile-fsm: | |
| name: Margi mobile — FSM tests | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: novadrive-mobile | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| cache: npm | |
| cache-dependency-path: novadrive-mobile/package-lock.json | |
| - run: npm install --legacy-peer-deps | |
| - run: npm run typecheck | |
| - run: npm test | |
| - run: npm run verify:docs | |
| - run: npm run verify:branding | |
| web-build: | |
| name: Margi web — production build | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: novadrive | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| cache: npm | |
| cache-dependency-path: novadrive/package-lock.json | |
| - run: npm install | |
| - run: npm run build | |
| docs-site: | |
| name: Brief site — static build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - run: node docs/site/build-docs.js | |
| - run: test -f docs/site/index.html |