Skip to content

Commit 30615dd

Browse files
committed
chore: use luals for style check
1 parent f7e8f65 commit 30615dd

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ jobs:
2626
- name: checkout
2727
uses: actions/checkout@v4
2828

29-
- name: install lua
29+
- name: install lua ${{ matrix.lua_version }}
3030
uses: leafo/gh-actions-lua@v11
3131
with:
3232
luaVersion: ${{ matrix.lua_version }}
3333

3434
- name: install luarocks
3535
uses: leafo/gh-actions-luarocks@v5
3636

37-
- name: install luacheck
37+
- name: install luacheck ${{ matrix.luacheck_version }}
3838
run: luarocks install ${{ matrix.luacheck_version }}
3939

4040
- run: make lint
@@ -64,7 +64,7 @@ jobs:
6464
neovim: true
6565
version: ${{ matrix.nvim_version }}
6666

67-
- name: install lua-language-server
67+
- name: install lua-language-server ${{ matrix.luals_version }}
6868
run: |
6969
mkdir -p luals
7070
curl -L "https://github.com/LuaLS/lua-language-server/releases/download/${{ matrix.luals_version }}/lua-language-server-${{ matrix.luals_version }}-linux-x64.tar.gz" | tar zx --directory luals

lua/nvim-tree/explorer/init.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ function Explorer:populate_children(handle, cwd, node, project, parent)
388388
})
389389
if child then
390390
table.insert(node.nodes, child)
391-
nodes_by_path[child.absolute_path] = true
391+
nodes_by_path[child.absolute_path] = true
392392
child:update_git_status(node_ignored, project)
393393
end
394394
elseif node.hidden_stats then

0 commit comments

Comments
 (0)