Queries-CI #31
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Queries-CI | |
on: | |
workflow_dispatch: | |
push: | |
branches: ["*"] | |
paths: | |
- queries/** | |
pull_request: | |
paths: | |
- queries/** | |
concurrency: | |
group: ${{github.workflow}}-${{github.ref}} | |
cancel-in-progress: true | |
jobs: | |
luacheck: | |
name: Luacheck | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Prepare | |
run: | | |
sudo apt-get update | |
sudo apt-get install luarocks -y | |
sudo luarocks install luacheck | |
- name: Run Luacheck | |
run: luacheck . | |
stylua: | |
name: StyLua | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Lint with stylua | |
uses: JohnnyMorganz/stylua-action@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
version: latest | |
args: --check . | |
format-queries: | |
name: Lint queries | |
runs-on: ubuntu-latest | |
env: | |
NVIM_TAG: stable | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup nvim and Treesitter | |
run: | | |
bash ./scripts/ci-install.sh | |
- name: Copy nvim config to ensure nvim-treesitter is installed | |
run: | | |
cp -r ./.config/nvim ~/.config/nvim | |
- name: Lint | |
run: | | |
nvim --headless -c "TSInstallSync query" -c "q" | |
nvim -l scripts/format-queries.lua | |
git diff --exit-code |