diff options
author | kylo252 <[email protected]> | 2021-08-23 17:18:42 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2021-08-23 17:18:42 +0200 |
commit | 101c6834333ffb06856155054ea77747819ef5fc (patch) | |
tree | 342d5eab5e58e97c7b71bb2d56bb68d5aa3ab2da /.github/workflows | |
parent | cc166d05039ac0dda71c4d17f2378f9c5bf2b4eb (diff) |
[Refactor] Installer v2 with support for backup (#1052)
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/install.yaml | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/.github/workflows/install.yaml b/.github/workflows/install.yaml index 6fb0d49c..f7d9da01 100644 --- a/.github/workflows/install.yaml +++ b/.github/workflows/install.yaml @@ -1,11 +1,11 @@ name: install on: push: - branches: '**' + branches: "**" pull_request: branches: - - 'master' - - 'rolling' + - "master" + - "rolling" jobs: unixish: @@ -38,14 +38,15 @@ jobs: - name: Install LunarVim timeout-minutes: 4 run: | - bash ./utils/installer/install.sh --testing + mkdir -p "$HOME/.local/share/lunarvim" + mkdir -p "$HOME/.config/lvim" + bash ./utils/installer/install.sh - name: Test LunarVim PackerCompile - run: if lvim --headless +PackerCompile -c ':qall' 2>&1|grep -q 'Error'; then false; fi + run: if "$HOME"/.local/bin/lvim --headless +PackerCompile -c ':qall' 2>&1|grep -q 'Error'; then false; fi - name: Test LunarVim Health - run: if lvim --headless +checkhealth -c ':qall' 2>&1|grep -q 'Error'; then false; fi - + run: if "$HOME"/.local/bin/lvim --headless +checkhealth -c ':qall' 2>&1|grep -q 'Error'; then false; fi # freebsd: # runs-on: macos-latest # if: github.event.pull_request.draft == false @@ -53,7 +54,7 @@ jobs: # name: "FreeBSD macos-latest" # steps: # - uses: actions/checkout@v2 - + # - name: Install dependencies for FreeBSD # uses: vmactions/[email protected] # with: |