Skip to content

davidcraig/action-wow-lint

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WoW Lua Lint

This action will lint all lua files specified for a given repository and check for any syntax issues (under the hood it uses luac -p path/to/files)

Usage

The following shows an example of how to use this action in a workflow.

.github/workflows/lint.yml

name: Lint
on: [push]

jobs:
  lint:
    name: Lint
    runs-on: ubuntu-latest
    steps:
      - name: checkout
        uses: actions/checkout@v2
        with:
          repository: 'ps-wow/action-test-repo'
      - name: wow-lint
        uses: davidcraig/[email protected]
        with:
            path-to-files: 'src/test.lua'