Skip to content

✨ rendering image support in neovim #2092

✨ rendering image support in neovim

✨ rendering image support in neovim #2092

Workflow file for this run

name: test
on: [push, workflow_dispatch]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Install pnpm
uses: pnpm/[email protected]
with:
version: 7.27.0
- name: node tests
working-directory: ./test
run: |
pnpm install
pnpm test
test-dotme:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name:
run: |
sudo apt-get install stow
rm ~/.bashrc
rm ~/.bash_profile
./bin/dotme -i "shim|stow"
./start
. $HOME/.bash_profile
. $HOME/.bashrc
./bin/dotme verify
test-vim:
runs-on: ubuntu-latest
strategy:
matrix:
neovim: [false, true]
version: [stable]
fail-fast: false
steps:
- uses: actions/[email protected]
- name: checkout vader.vim
uses: actions/[email protected]
with:
repository: junegunn/vader.vim
path: ./test/vim/tmp/vim/plugins/vader.vim
- uses: rhysd/action-setup-vim@v1
id: vim
with:
neovim: ${{ matrix.neovim }}
version: ${{ matrix.version }}
- name: test
env:
VIM_COMMAND: ${{ steps.vim.outputs.executable }}
working-directory: ./test/vim
run: |
echo $VIM_COMMAND
make test