workflow: update linter.yml

This commit is contained in:
xiaoxian521 2021-09-25 20:58:48 +08:00
parent f47492ea99
commit 5abb47df3b

View File

@ -15,9 +15,6 @@ name: Lint Code Base
# Start the job on all push # # Start the job on all push #
############################# #############################
on: on:
push:
branches-ignore: main
# Remove the line above to run when pushing to master
pull_request: pull_request:
branches: main branches: main
@ -35,27 +32,15 @@ jobs:
# Load all steps # # Load all steps #
################## ##################
steps: steps:
##########################
# 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
################################ ################################
# Run Linter against code base # # Run Linter against code base #
################################ ################################
- name: Lint Code Base - name: Lint
uses: github/super-linter@v4 run: |
yarn install
yarn lint
yarn run build
env: env:
VALIDATE_ALL_CODEBASE: false VALIDATE_ALL_CODEBASE: false
DEFAULT_BRANCH: main DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Build
run: |
yarn install
yarn lint:stylelint
yarn run build