-
Notifications
You must be signed in to change notification settings - Fork 18
55 lines (46 loc) · 1.4 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: Test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
strategy:
matrix:
version: [stable, nightly]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Neovim
shell: bash
run: |
mkdir -p /tmp/nvim
wget -q https://github.com/neovim/neovim/releases/download/${{ matrix.version }}/nvim.appimage -O /tmp/nvim/nvim.appimage
cd /tmp/nvim
chmod a+x ./nvim.appimage
./nvim.appimage --appimage-extract
echo "/tmp/nvim/squashfs-root/usr/bin/" >> $GITHUB_PATH
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install parsers
run: |
nvim --headless -u tests/init.lua -c "luafile tests/parsers.lua"
- name: Install npm dependencies
run: |
npm install -g neovim @tailwindcss/language-server
cd tests/lsp/project && npm install
- name: Run checkhealth
run: |
nvim --version
nvim --headless -u tests/init.lua "+checkhealth tailwind-tools" "+w! health.log" +qa
cat health.log
if grep -q "ERROR" health.log; then
exit 1
fi
- name: Run Tests
run: nvim --headless -u tests/init.lua -c "PlenaryBustedDirectory tests/ { init='tests/init.lua' }"