Fix XR menu panel scaling for distant model placement #3419
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: Unit tests | |
| on: pull_request | |
| jobs: | |
| full_test_run: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 60 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - uses: actions/setup-node@v4 | |
| - name: NPM install | |
| run: npm ci | |
| - name: Install playwright browsers | |
| run: npx playwright install --with-deps | |
| # - name: Lint TypeScript sources | |
| # run: npm run lint | |
| - name: Build packages | |
| run: npm run build | |
| - name: Unit tests | |
| run: npm run test:ci |