From b3b08b947bdc7785bfffa27c6a2bb7b9b68110cc Mon Sep 17 00:00:00 2001 From: xiaoxian521 <1923740402@qq.com> Date: Mon, 27 Sep 2021 12:29:09 +0800 Subject: [PATCH] workflow: update --- .github/workflows/linter.yml | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 08402ad4e..351199f2f 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -15,6 +15,9 @@ name: Lint Code Base # Start the job on all push # ############################# on: + push: + branches-ignore: main + # Remove the line above to run when pushing to master pull_request: branches: main @@ -32,10 +35,16 @@ jobs: # Load all steps # ################## steps: - ################################ - # Run Linter against code base # - ################################ - - name: Lint + ########################## + # Checkout the code base # + ########################## + - name: Checkout Code + uses: actions/checkout@v2 + with: + # Full git history is needed to get a proper list of changed files within `super-linter` + fetch-depth: 0 + + - name: Build run: | yarn install yarn lint