This repository was archived by the owner on Feb 17, 2026. It is now read-only.
Fix line highlighting bug and Fix opening ZCPU documentation #131
Workflow file for this run
This file contains hidden or 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: Lint | |
| on: | |
| pull_request: | |
| paths: | |
| - "lua/**" | |
| workflow_dispatch: | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@master | |
| - uses: leafo/gh-actions-lua@v10 | |
| with: | |
| luaVersion: "luajit-2.1.0-beta3" | |
| - name: Get any changed files | |
| id: changed-files | |
| uses: tj-actions/changed-files@v41 | |
| with: | |
| files: | | |
| **.lua | |
| - name: Download GluaFixer | |
| run: | | |
| curl -o glualint.zip -L https://github.com/FPtje/GLuaFixer/releases/download/1.24.6/glualint-1.24.6-x86_64-linux.zip | |
| unzip glualint.zip | |
| - name: Lint Code | |
| run: | | |
| ./glualint ${{ steps.changed-files.outputs.all_changed_files }} |