From c81f5d26b412269bf32e3c1b9996ee60c57359e0 Mon Sep 17 00:00:00 2001 From: Chris Berg Date: Thu, 24 Oct 2024 12:30:43 -0700 Subject: [PATCH] feat: adding super linter as a starting linter --- .github/workflows/pr-validate.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pr-validate.yml b/.github/workflows/pr-validate.yml index 66ff7373a..619d21a7b 100644 --- a/.github/workflows/pr-validate.yml +++ b/.github/workflows/pr-validate.yml @@ -17,11 +17,16 @@ jobs: markdown_links: | - [Frontend](https://${{ github.event.repository.name }}-${{ github.event.number }}-frontend.apps.silver.devops.gov.bc.ca) - [Backend](https://${{ github.event.repository.name }}-${{ github.event.number }}-frontend.apps.silver.devops.gov.bc.ca/api) + + lint: + name: Lint PR + if: (! github.event.pull_request.draft) + uses: bcgov/quickstart-openshift-helpers/.github/workflows/.pr-lint.yml@feat/super_lint results: name: Validate Results if: always() - needs: [validate] + needs: [validate,lint] runs-on: ubuntu-24.04 steps: - run: echo "Success!"