Remove self-hosted runner

This commit is contained in:
TheiLLeniumStudios
2022-05-04 08:13:20 +00:00
parent 43dd459b54
commit b7b64666a0
+4 -4
View File
@@ -2,8 +2,8 @@ name: Lint
on: [push, pull_request] on: [push, pull_request]
jobs: jobs:
lint: lint:
name: Lint Lua Scripts name: Lint Resource
runs-on: self-hosted #runs-on: self-hosted
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v2 uses: actions/checkout@v2
@@ -12,10 +12,10 @@ jobs:
with: with:
capture: "junit.xml" capture: "junit.xml"
args: "-t --formatter JUnit" args: "-t --formatter JUnit"
- name: Publish Test Report - name: Generate Lint Report
if: always() if: always()
uses: mikepenz/action-junit-report@v3 uses: mikepenz/action-junit-report@v3
with: with:
report_paths: "**/junit.xml" report_paths: "**/junit.xml"
check_name: Generate Report check_name: Linting Report
fail_on_failure: false fail_on_failure: false