Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(ci): test with nvim nightly #4661

Merged
merged 1 commit into from
Jun 2, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,11 @@ jobs:
strategy:
fail-fast: false
matrix:
neovim:
- "stable"
- "nightly"
node:
- "16"
- "14"
include:
# only enable coverage on the fastest job
- node: "16"
Expand Down Expand Up @@ -47,16 +49,17 @@ jobs:
- run: pip install pynvim

- name: Setup vim
uses: rhysd/action-setup-vim@v1.2.13
uses: rhysd/action-setup-vim@v1
id: vim
with:
version: v9.0.0815

- name: Setup neovim
id: nvim
uses: rhysd/action-setup-vim@v1.2.13
uses: rhysd/action-setup-vim@v1
with:
neovim: true
version: ${{ matrix.neovim }}

- name: Install Dependencies
run: |
Expand Down