mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-07 08:57:19 +08:00
46 lines
949 B
YAML
46 lines
949 B
YAML
---
|
|
#################################
|
|
#################################
|
|
## Super Linter GitHub Actions ##
|
|
#################################
|
|
#################################
|
|
name: Lint Code
|
|
|
|
#
|
|
# Documentation:
|
|
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
|
|
#
|
|
|
|
#############################
|
|
# 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
|
|
|
|
###############
|
|
# Set the Job #
|
|
###############
|
|
jobs:
|
|
build:
|
|
# Name the Job
|
|
name: Lint Code
|
|
# Set the agent to run on
|
|
runs-on: ubuntu-latest
|
|
|
|
##################
|
|
# Load all steps #
|
|
##################
|
|
steps:
|
|
##########################
|
|
# Checkout the code #
|
|
##########################
|
|
- name: Lint
|
|
run: |
|
|
yarn install
|
|
yarn lint
|
|
yarn run build
|