Skip to content

Commit

Permalink
chore(ci): temporarily only allow macos-latest with node v14
Browse files Browse the repository at this point in the history
  • Loading branch information
kkoomen committed May 1, 2022
1 parent 1f07855 commit 87dcc1d
Showing 1 changed file with 45 additions and 42 deletions.
87 changes: 45 additions & 42 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,12 @@ jobs:
name: Vim
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
vim-version: [v7.4.2119, head]
node-version: [10, 12, 14]
# os: [macos-latest, ubuntu-latest, windows-latest]
os: [macos-latest]
# vim-version: [v7.4.2119, head]
vim-version: [head]
# node-version: [10, 12, 14]
node-version: [14]
include:
- os: macos-latest
target: macos
Expand Down Expand Up @@ -54,45 +57,45 @@ jobs:
run: ./scripts/run-vader-tests.sh "${{ steps.vim.outputs.executable }}"
shell: bash

tests_neovim:
name: NeoVim
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
vim-version: [v0.3.2, head]
node-version: [10, 12, 14]
include:
- os: macos-latest
target: macos
- os: ubuntu-latest
target: linux
runs-on: ${{ matrix.os }}
steps:
- name: Checkout kkoomen/vim-doge
uses: actions/checkout@v2
with:
submodules: true
- name: Checkout junegunn/vader.vim
uses: actions/checkout@v2
with:
repository: junegunn/vader.vim
path: vader.vim
- name: Setup nodejs
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci --no-save
- name: Build binary
run: npm run build:binary:unix
- name: Setup neovim
uses: thinca/action-setup-vim@v1
id: vim
with:
vim_version: ${{ matrix.vim-version }}
vim_type: neovim
- name: Run tests
run: ./scripts/run-vader-tests.sh "${{ steps.vim.outputs.executable }}"
shell: bash
# tests_neovim:
# name: NeoVim
# strategy:
# matrix:
# os: [macos-latest, ubuntu-latest]
# vim-version: [v0.3.2, head]
# node-version: [10, 12, 14]
# include:
# - os: macos-latest
# target: macos
# - os: ubuntu-latest
# target: linux
# runs-on: ${{ matrix.os }}
# steps:
# - name: Checkout kkoomen/vim-doge
# uses: actions/checkout@v2
# with:
# submodules: true
# - name: Checkout junegunn/vader.vim
# uses: actions/checkout@v2
# with:
# repository: junegunn/vader.vim
# path: vader.vim
# - name: Setup nodejs
# uses: actions/setup-node@v1
# with:
# node-version: ${{ matrix.node-version }}
# - run: npm ci --no-save
# - name: Build binary
# run: npm run build:binary:unix
# - name: Setup neovim
# uses: thinca/action-setup-vim@v1
# id: vim
# with:
# vim_version: ${{ matrix.vim-version }}
# vim_type: neovim
# - name: Run tests
# run: ./scripts/run-vader-tests.sh "${{ steps.vim.outputs.executable }}"
# shell: bash

vint:
name: Linter
Expand Down

0 comments on commit 87dcc1d

Please sign in to comment.