From b7b64666a05cf6ffdc8283abb9d4bd2fe519a7d9 Mon Sep 17 00:00:00 2001 From: TheiLLeniumStudios <104288623+TheiLLeniumStudios@users.noreply.github.com> Date: Wed, 4 May 2022 08:13:20 +0000 Subject: [PATCH] Remove self-hosted runner --- .github/workflows/lint.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 21ad2cb..999049e 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -2,8 +2,8 @@ name: Lint on: [push, pull_request] jobs: lint: - name: Lint Lua Scripts - runs-on: self-hosted + name: Lint Resource + #runs-on: self-hosted steps: - name: Checkout uses: actions/checkout@v2 @@ -12,10 +12,10 @@ jobs: with: capture: "junit.xml" args: "-t --formatter JUnit" - - name: Publish Test Report + - name: Generate Lint Report if: always() uses: mikepenz/action-junit-report@v3 with: report_paths: "**/junit.xml" - check_name: Generate Report + check_name: Linting Report fail_on_failure: false