Skip to content

Fix parser to handle TypeScript types with nested quotes #14

Fix parser to handle TypeScript types with nested quotes

Fix parser to handle TypeScript types with nested quotes #14

Workflow file for this run

name: CI
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
nvim-version: [stable, nightly]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Build database
run: make build
- name: Install Neovim
uses: rhysd/action-setup-vim@v1
with:
neovim: true
version: ${{ matrix.nvim-version }}
- name: Install plenary.nvim
run: |
mkdir -p ~/.local/share/nvim/site/pack/vendor/start
git clone --depth=1 https://github.com/nvim-lua/plenary.nvim ~/.local/share/nvim/site/pack/vendor/start/plenary.nvim
- name: Run tests
run: make test
- name: Upload test results
if: failure()
uses: actions/upload-artifact@v4
with:
name: test-results-${{ matrix.os }}-${{ matrix.nvim-version }}
path: |
*.log
test-*.xml
retention-days: 7