This repository has been archived by the owner on Feb 8, 2024. It is now read-only.
Merge pull request #143 from xT-Development/2.0 #282
This file contains 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: [push, pull_request_target] | |
jobs: | |
lint: | |
name: Lint Resource | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Lint | |
uses: iLLeniumStudios/fivem-lua-lint-action@v2 | |
with: | |
capture: "junit.xml" | |
args: "-t --formatter JUnit" | |
extra_libs: mysql+qblocales+polyzone+qbgarages+qbapartments | |
- name: Generate Lint Report | |
if: always() | |
uses: mikepenz/action-junit-report@v3 | |
with: | |
report_paths: "**/junit.xml" | |
check_name: Linting Report | |
fail_on_failure: false |