Skip to content

feat(api)!: simplify prompt functions into one, with opts to control #14

feat(api)!: simplify prompt functions into one, with opts to control

feat(api)!: simplify prompt functions into one, with opts to control #14

Workflow file for this run

name: Lua LS Diagnostics
on:
push:
branches: [main]
jobs:
lua-ls-diagnostics:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Lua Language Server
run: |
curl -L "https://github.com/LuaLS/lua-language-server/releases/download/3.15.0/lua-language-server-3.15.0-linux-x64.tar.gz" -o /opt/lls.tar.gz
mkdir /opt/lls
tar -xzf /opt/lls.tar.gz -C /opt/lls
echo "/opt/lls/bin" >> $GITHUB_PATH
- name: Run Lua LS diagnostics
run: |
# TODO: Fix remaining CI-only lint issues
lua-language-server --check=. || exit 0