workflow: update

This commit is contained in:
xiaoxian521 2021-09-27 12:29:09 +08:00
parent 5abb47df3b
commit b3b08b947b

View File

@ -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