Skip to content

disable typescript-tools when no ui #1209

disable typescript-tools when no ui

disable typescript-tools when no ui #1209

Workflow file for this run

name: test
on:
push:
branches: [dev]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ["ubuntu-latest", "macos-latest"]
env:
TERM: xterm
steps:
- name: Brew
run: |
if [ "$RUNNER_OS" == "macOS" ]; then
brew install pipx
brew install shellcheck
fi
- name: Check out repository code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version-file: 'package.json'
- name: Install npm packages
run: npm ci
- name: Install neovim nightly
uses: rhysd/action-setup-vim@v1
with:
neovim: true
version: nightly
- name: Test
run: |
./bootstrap/symlink
npm test --silent