feat(nvim): allow resize in terminal #775
This file contains 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: Installation Test (native) | |
on: push | |
# Available runners | |
# https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources | |
jobs: | |
local: | |
name: Local Installation (${{ matrix.os }}) [${{ matrix.flag }}] | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest] | |
flag: [-v, '', -q] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Clean Up Environment | |
env: | |
REMOVE_PACKAGES: ${{ vars.REMOVE_PACKAGES }} | |
REMOVE_FILES: ${{ vars.REMOVE_FILES }} | |
run: | | |
if test -n "$REMOVE_PACKAGES"; then | |
brew uninstall --ignore-dependencies $REMOVE_PACKAGES | |
fi | |
if test -n "$REMOVE_FILES"; then | |
rm -f $REMOVE_FILES | |
fi | |
- name: Installation Info | |
run: | | |
sh install.sh -i | |
- name: Perform Installation | |
env: | |
FLAG: ${{ matrix.flag }} | |
run: | | |
sh install.sh --profile=ci $FLAG no-app-store | |
remote: | |
name: Remote Installation (${{ matrix.os }}) [${{ matrix.flag }}] | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest] | |
flag: [-v, '', -q] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Clean Up Environment | |
env: | |
REMOVE_PACKAGES: ${{ vars.REMOVE_PACKAGES }} | |
REMOVE_FILES: ${{ vars.REMOVE_FILES }} | |
run: | | |
if test -n "$REMOVE_PACKAGES"; then | |
brew uninstall --ignore-dependencies $REMOVE_PACKAGES | |
fi | |
if test -n "$REMOVE_FILES"; then | |
rm -f $REMOVE_FILES | |
fi | |
- name: Installation Info | |
run: | | |
sh -c "$(curl -sSL dots.spywhere.me)" - -i | |
- name: Perform Installation | |
env: | |
FLAG: ${{ matrix.flag }} | |
run: | | |
sh -c "$(curl -sSL dots.spywhere.me)" - --profile=ci $FLAG no-app-store |