feat: disable transparent on terminal window #2424
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: E2E Test | |
| on: | |
| push: | |
| pull_request: | |
| branches: [ master ] | |
| schedule: | |
| - cron: '26 9 * * 1' | |
| jobs: | |
| ubuntu: | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| os_name: | |
| - ubuntu | |
| os_version: | |
| - 24.04 | |
| runs-on: ubuntu-latest | |
| container: ${{ matrix.os_name }}:${{ matrix.os_version }} | |
| steps: | |
| - name: Install requirements | |
| run: | | |
| apt-get update | |
| apt-get install -y curl gcc git gnupg make tar | |
| - uses: actions/checkout@v6 | |
| - name: Install dotfiles from branch | |
| env: | |
| LANG: en_US.utf8 | |
| HOME: /root | |
| MISE_GITHUB_TOKEN: ${{ secrets.MISE_GITHUB_TOKEN }} | |
| run: | | |
| cp -a "${GITHUB_WORKSPACE}" /root/.dotfiles | |
| bash /root/.dotfiles/install |