fix(base): no need to panic #20
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: lua_ls-typecheck | |
on: | |
pull_request: ~ | |
push: | |
branches: | |
- '*' | |
jobs: | |
build: | |
name: Type Check Code Base | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Checkout dependency neodev | |
uses: actions/checkout@v3 | |
with: | |
repository: "folke/neodev.nvim" | |
path: "deps/neodev.nvim" | |
- name: Print Filetree | |
run: ls -la && ls -la deps | |
- name: Type Check Code Base | |
uses: mrcjkb/lua-typecheck-action@v0.1.2 | |
with: | |
configpath: .github/workflows/.luarc.json | |
directories: | | |
lua | |
spec |