Center all windows on open (fixes no height windows) #223
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 development | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: ["development"] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout development branch | |
| uses: actions/checkout@v3 | |
| with: | |
| ref: development | |
| - name: Setup Node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: "20.x" | |
| - name: Build | |
| run: | | |
| npm install | |
| npm run build |