fix: popup not accounting for native titlebar height #261
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: Test electron-chrome-extensions | |
| on: | |
| push: | |
| paths: | |
| - 'packages/**' | |
| pull_request: | |
| paths: | |
| - 'packages/**' | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20.x' | |
| - name: Install dependencies | |
| run: yarn install | |
| - name: Build | |
| run: yarn build | |
| - name: Run tests (Linux) | |
| if: runner.os == 'Linux' | |
| uses: GabrielBB/xvfb-action@v1 | |
| with: | |
| run: yarn test | |
| - name: Run tests (Windows) | |
| if: runner.os == 'Windows' | |
| run: yarn test |