fix(installer): remove duplicate app name in install output (#408) #5
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 Install Script | |
| on: | |
| pull_request: | |
| paths: | |
| - 'install.sh' | |
| - 'e2e/install/**' | |
| - '.github/workflows/test-install.yml' | |
| push: | |
| branches: [main] | |
| paths: | |
| - 'install.sh' | |
| - 'e2e/install/**' | |
| - '.github/workflows/test-install.yml' | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| test-install: | |
| name: install.sh (${{ matrix.shell }}) | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - shell: sh | |
| test: e2e/install/sh_test.sh | |
| run: sh e2e/install/sh_test.sh | |
| - shell: bash | |
| test: e2e/install/bash_test.sh | |
| run: bash e2e/install/bash_test.sh | |
| - shell: zsh | |
| test: e2e/install/zsh_test.sh | |
| run: zsh e2e/install/zsh_test.sh | |
| install: zsh | |
| - shell: fish | |
| test: e2e/install/fish_test.fish | |
| run: fish e2e/install/fish_test.fish | |
| install: fish | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install ${{ matrix.shell }} | |
| if: matrix.install | |
| run: sudo apt-get update && sudo apt-get install -y ${{ matrix.install }} | |
| - name: Run tests (${{ matrix.shell }}) | |
| run: ${{ matrix.run }} |