feat: set detect log level to DEBUG when action is in debug #17
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint Code Base | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches-ignore: | |
- main | |
jobs: | |
lint: | |
name: Lint Code Base | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: read | |
statuses: write | |
steps: | |
- name: Checkout | |
id: checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
id: setup-node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: npm | |
- name: Install Dependencies | |
id: install | |
run: npm ci | |
# TODO check prettier problem | |
# - name: Lint Code Base | |
# id: super-linter | |
# uses: super-linter/super-linter/slim@v5 | |
# env: | |
# DEFAULT_BRANCH: main | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# TYPESCRIPT_DEFAULT_STYLE: prettier | |
# VALIDATE_JSCPD: false | |
# FILTER_REGEX_EXCLUDE: dist/* |