Sync injections with nvim treesitter #4
Workflow file for this run
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: Linting | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
- main | |
concurrency: | |
group: ${{github.workflow}}-${{github.ref}} | |
cancel-in-progress: true | |
jobs: | |
js: | |
name: "JavaScript" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
- run: npm install | |
- run: npm exec prettier --check . | |
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: Prepare | |
run: | | |
bash ./scripts/ci-install.sh | |
- name: Lint | |
run: | | |
nvim --headless -c "TSInstallSync query" -c "q" | |
nvim -l scripts/format-queries.lua | |
git diff --exit-code |