workflow: update linter.yml open Allow all actions

This commit is contained in:
xiaoxian521 2021-09-19 18:07:38 +08:00
parent ababf2d29e
commit 8458d5d37b

View File

@ -38,10 +38,24 @@ jobs:
##########################
# Checkout the code base #
##########################
- name: Build
- 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 #
################################
- name: Lint Code Base
uses: github/super-linter@v4
env:
VALIDATE_ALL_CODEBASE: false
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Build
run: |
npm run install
npm run lint
npm run build
yarn install
yarn lint
yarn run build