fix(blink-cmp): blink not working due to completion.list.selection #2
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: llscheck | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
jobs: | |
llscheck: | |
runs-on: ubuntu-latest | |
name: llscheck | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
- name: Install Neovim | |
uses: rhysd/action-setup-vim@v1 | |
# NOTE: We need Neovim installed in order to expose the $VIMRUNTIME | |
# environment variable | |
with: | |
neovim: true | |
version: stable | |
- name: Install A Lua Interpreter | |
uses: leafo/gh-actions-lua@v10 | |
with: | |
# Neovim is compiled with LuaJIT so we might as well match. But it | |
# doesn't look like we can match it exactly. | |
# | |
# Reference: | |
# https://github.com/leafo/gh-actions-lua/issues/49#issuecomment-2295071198 | |
# | |
luaVersion: "luajit-openresty" | |
- name: Install lua-language-server | |
uses: jdx/mise-action@v2 | |
with: | |
tool_versions: | | |
lua-language-server latest | |
- name: Install luarocks | |
uses: leafo/gh-actions-luarocks@v4 | |
- name: Install llscheck | |
run: | | |
luarocks install llscheck | |
luarocks install nlua | |
- name: Clone Dependencies - busted | |
uses: actions/checkout@v4 | |
with: | |
repository: "LuaCATS/busted" | |
path: ".dependencies/busted" | |
- name: Clone Dependencies - luassert | |
uses: actions/checkout@v4 | |
with: | |
repository: "LuaCATS/luassert" | |
path: ".dependencies/luassert" | |
- name: Clone Dependencies - luavit-meta | |
uses: actions/checkout@v4 | |
with: | |
repository: "Bilal2453/luvit-meta" | |
path: ".dependencies/luvit-meta" | |
- name: Clone Dependencies - mega.cmdparse | |
uses: actions/checkout@v4 | |
with: | |
repository: "ColinKennedy/mega.cmdparse" | |
path: ".dependencies/mega.cmdparse" | |
- name: Clone Dependencies - mega.logging | |
uses: actions/checkout@v4 | |
with: | |
repository: "ColinKennedy/mega.logging" | |
path: ".dependencies/mega.logging" | |
- name: Print Version | |
run: | | |
lua-language-server --version | |
- name: Test | |
run: | | |
make llscheck CONFIGURATION=.github/workflows/.luarc.json |