diff options
author | Subho Banerjee <[email protected]> | 2021-09-30 11:53:14 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2021-09-30 18:53:14 +0200 |
commit | e270bdbd6f9adfd9ae471512c63c3283798481f1 (patch) | |
tree | 41e594e199a0b118a2208293fe8a214545b5f7f7 /.github/workflows | |
parent | 8ec92c0420374097f1a617fe91cd6f6a5503c5b0 (diff) |
[Bugfix]: Use local install in Github actions (#1628)
Co-authored-by: kylo252 <[email protected]>
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/install.yaml | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/.github/workflows/install.yaml b/.github/workflows/install.yaml index 6d84f79c..fa1b9be8 100644 --- a/.github/workflows/install.yaml +++ b/.github/workflows/install.yaml @@ -1,7 +1,7 @@ name: install on: push: - branches: "**" + branches: ["**"] pull_request: branches: - "master" @@ -31,10 +31,7 @@ jobs: - name: Install LunarVim timeout-minutes: 4 run: | - mkdir -p "$HOME"/.local/share/lunarvim/lvim - mkdir -p "$HOME"/.config/lvim - ln -s "$PWD"/* "$HOME"/.local/share/lunarvim/lvim/. - bash ./utils/installer/install.sh + ./utils/installer/install.sh --local --no-install-dependencies - name: Test LunarVim PackerCompile run: if "$HOME"/.local/bin/lvim --headless +PackerCompile -c ':qall' 2>&1|grep -q 'Error'; then false; fi |