Skip to content

Add syntax test

Add syntax test #71

Workflow file for this run

# Inspired by: https://github.com/lervag/vimtex/blob/master/.github/workflows/main.yml
name: Test
on: [pull_request]
jobs:
build:
name: Test
runs-on: ubuntu-latest
steps:
- uses: rhysd/action-setup-vim@v1
with:
neovim: true
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '12.x'
registry-url: 'https://registry.npmjs.org'
- run: npm install
- name: Test with neovim
run: |
nvim --version
vim --version
make test
- name: Test syntax
run: make test-syntax