From d845528ee6d110c7a4ae18c98eedc0f98071ae4a Mon Sep 17 00:00:00 2001 From: Lucas Gravley <29484535+admiralAwkbar@users.noreply.github.com> Date: Wed, 23 Oct 2019 10:17:46 -0500 Subject: [PATCH] fixed code --- .github/workflows/stack-linter.yml | 56 +++++++----------------------- 1 file changed, 12 insertions(+), 44 deletions(-) diff --git a/.github/workflows/stack-linter.yml b/.github/workflows/stack-linter.yml index 0cc350c3..68901a28 100644 --- a/.github/workflows/stack-linter.yml +++ b/.github/workflows/stack-linter.yml @@ -1,10 +1,9 @@ --- -############################# -############################# -## CI/CT/CD GitHub Actions ## -############################# -############################# -name: Source Linter +############################ +############################ +## Preflight Stack Linter ## +############################ +############################ # # Documentation: @@ -14,7 +13,7 @@ name: Source Linter ############################# # Start the job on all push # ############################# -on: ['push'] +on: ["push"] ############### # Set the Job # @@ -22,7 +21,7 @@ on: ['push'] jobs: build: # Name the Job - name: Source linter + name: Stack linter # Set the agent to run on runs-on: ubuntu-latest ################## @@ -35,39 +34,8 @@ jobs: - name: Checkout Code uses: actions/checkout@master - ##################### - # Install Ruby Libs # - ##################### - - name: Set up Ruby - uses: actions/setup-ruby@master - with: - ruby-version: 2.6.x - - #################### - # Install NPM Libs # - #################### - - name: Setup NPM - uses: actions/setup-node@master - with: - node-version: 10.x - - ################################# - # Install all base dependancies # - ################################# - - name: Install Dependencies - shell: bash - run: ./.automation/install-deps.sh - - ############################################# - # Run the markup and markdown linter script # - ############################################# - - name: Run Markup and Markdown Linter - shell: bash - run: ./.automation/markup-markdown-linter.sh - - ################################### - # Run the scripting linter script # - ################################### - - name: Run Scripting Linter - shell: bash - run: ./.automation/scripting-linter.sh + ################################ + # Run Linter against code base # + ################################ + - name: Lint Code Base + uses: docker://admiralawkbar/super-linter:latest