fix: enable Lint check in CI
cause #626 is merged! ❤️ Signed-off-by: Vinayak Kulkarni <19776877+vinayakkulkarni@users.noreply.github.com>
This commit is contained in:
parent
70a5cff07b
commit
646a0c4f14
1 changed files with 12 additions and 10 deletions
22
.github/workflows/ci.yml
vendored
22
.github/workflows/ci.yml
vendored
|
|
@ -29,16 +29,18 @@ jobs:
|
|||
- name: Install dependencies 🚀
|
||||
run: npm i --prefer-offline --no-audit --omit=optional
|
||||
|
||||
# - name: Run linter(s) 💅
|
||||
# uses: wearerequired/lint-action@v2
|
||||
# with:
|
||||
# github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
# continue_on_error: false
|
||||
# git_name: github-actions[bot]
|
||||
# git_email: github-actions[bot]@users.noreply.github.com
|
||||
# auto_fix: false
|
||||
# prettier: true
|
||||
# prettier_extensions: js,cjs,ts,json
|
||||
- name: Run linter(s) 💅
|
||||
uses: wearerequired/lint-action@v2
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
continue_on_error: false
|
||||
git_name: github-actions[bot]
|
||||
git_email: github-actions[bot]@users.noreply.github.com
|
||||
auto_fix: false
|
||||
prettier: true
|
||||
prettier_extensions: js,cjs,ts
|
||||
eslint: true
|
||||
eslint_extensions: js,cjs,ts
|
||||
|
||||
- name: Run hadolint 🐳
|
||||
uses: hadolint/hadolint-action@v2.1.0
|
||||
|
|
|
|||
Loading…
Reference in a new issue