This commit is contained in:
Nordi98 2025-07-18 20:21:42 +02:00
parent 8f5115d602
commit 860d27e06f
17 changed files with 960 additions and 0 deletions

View file

@ -0,0 +1,20 @@
name: CI
on: [push, pull_request]
jobs:
lint:
name: Lint Lua Scripts
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Lint
uses: GoatG33k/fivem-lua-lint-action@v1
with:
capture: "junit.xml"
args: "-t --formatter JUnit"
- name: Publish Test Report
uses: mikepenz/action-junit-report@v2
if: always()
with:
report_paths: "**/junit.xml"
fail_on_failure: 0