Files
qb-core/.github/workflows/lint.yml
T
2022-05-03 13:06:34 +02:00

22 lines
563 B
YAML

name: Lint
on: [push, pull_request]
jobs:
lint:
name: Lint Lua Scripts
runs-on: self-hosted
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Lint
uses: iLLeniumStudios/fivem-lua-lint-action@v1-backticks
with:
capture: "junit.xml"
args: "-t --formatter JUnit"
- name: Publish Test Report
if: always()
uses: mikepenz/action-junit-report@v3
with:
report_paths: "**/junit.xml"
check_name: Generate Report
fail_on_failure: false