File tree 2 files changed +15
-3
lines changed 2 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -12,13 +12,19 @@ jobs:
12
12
include :
13
13
- name : neovim-v05-x64
14
14
os : ubuntu-latest
15
- neovim_version : v0.5.0
15
+ neovim_version : v0.8.1
16
16
runs-on : ${{matrix.os}}
17
17
steps :
18
+ - name : Initialization
19
+ run : |
20
+ sudo apt-get update
21
+ # libfuse2 and LD_PRELOAD are needed for appimage.
22
+ sudo apt-get -y install libfuse2
23
+ echo "LD_PRELOAD=/lib/x86_64-linux-gnu/libgmodule-2.0.so" >> $GITHUB_ENV
18
24
- uses : actions/checkout@v2
19
25
- uses : actions/setup-node@v2
20
26
with :
21
- node-version : ' 12 .x'
27
+ node-version : ' 16 .x'
22
28
- name : Download vim
23
29
shell : bash
24
30
run : |
Original file line number Diff line number Diff line change @@ -16,10 +16,16 @@ jobs:
16
16
glibc_version : 2.15
17
17
runs-on : ${{matrix.os}}
18
18
steps :
19
+ - name : Initialization
20
+ run : |
21
+ sudo apt-get update
22
+ # libfuse2 and LD_PRELOAD are needed for appimage.
23
+ sudo apt-get -y install libfuse2
24
+ echo "LD_PRELOAD=/lib/x86_64-linux-gnu/libgmodule-2.0.so" >> $GITHUB_ENV
19
25
- uses : actions/checkout@v2
20
26
- uses : actions/setup-node@v2
21
27
with :
22
- node-version : ' 12 .x'
28
+ node-version : ' 16 .x'
23
29
- name : Download vim
24
30
shell : bash
25
31
run : |
You can’t perform that action at this time.
0 commit comments