chore: update templates
This commit is contained in:
parent
adcf691369
commit
74475d1f7d
3
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
3
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
@ -16,7 +16,7 @@ body:
|
|||||||
required: true
|
required: true
|
||||||
- label: I have searched the existing issues of persistence.nvim
|
- label: I have searched the existing issues of persistence.nvim
|
||||||
required: true
|
required: true
|
||||||
- label: I have searched the exsiting issues of plugins related to this issue
|
- label: I have searched the existing issues of plugins related to this issue
|
||||||
required: true
|
required: true
|
||||||
- type: input
|
- type: input
|
||||||
attributes:
|
attributes:
|
||||||
@ -59,6 +59,7 @@ body:
|
|||||||
value: |
|
value: |
|
||||||
-- DO NOT change the paths and don't remove the colorscheme
|
-- DO NOT change the paths and don't remove the colorscheme
|
||||||
local root = vim.fn.fnamemodify("./.repro", ":p")
|
local root = vim.fn.fnamemodify("./.repro", ":p")
|
||||||
|
|
||||||
-- set stdpaths to use .repro
|
-- set stdpaths to use .repro
|
||||||
for _, name in ipairs({ "config", "data", "state", "cache" }) do
|
for _, name in ipairs({ "config", "data", "state", "cache" }) do
|
||||||
vim.env[("XDG_%s_HOME"):format(name:upper())] = root .. "/" .. name
|
vim.env[("XDG_%s_HOME"):format(name:upper())] = root .. "/" .. name
|
||||||
|
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
@ -15,8 +15,12 @@ jobs:
|
|||||||
- name: Install Neovim
|
- name: Install Neovim
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
wget -q https://github.com/neovim/neovim/releases/download/nightly/nvim-linux64.deb -O /tmp/nvim.deb
|
mkdir -p /tmp/nvim
|
||||||
sudo dpkg -i /tmp/nvim.deb
|
wget -q https://github.com/neovim/neovim/releases/download/nightly/nvim.appimage -O /tmp/nvim/nvim.appimage
|
||||||
|
cd /tmp/nvim
|
||||||
|
chmod a+x ./nvim.appimage
|
||||||
|
./nvim.appimage --appimage-extract
|
||||||
|
echo "/tmp/nvim/squashfs-root/usr/bin/" >> $GITHUB_PATH
|
||||||
- name: Run Tests
|
- name: Run Tests
|
||||||
run: |
|
run: |
|
||||||
nvim --version
|
nvim --version
|
||||||
|
Loading…
x
Reference in New Issue
Block a user