Files
qb-core/.github/workflows/lint.yml
T
iLLeniumStudios 13e60e5ce3 Remove login step
2022-05-03 12:30:20 +02:00

20 lines
500 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
uses: mikepenz/action-junit-report@v2
with:
report_paths: "**/junit.xml"
fail_on_failure: 0