Skip to content

Commit

Permalink
🧱 Change linters to run in test jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
tiulpin committed Jun 20, 2023
1 parent b1da29f commit 95e5c52
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
- uses: actions/checkout@v3
- run: npm ci && npm run build

qodana: # make sure the action works on a clean machine without building
qodana:
runs-on: ubuntu-latest
permissions:
checks: write
Expand All @@ -101,10 +101,11 @@ jobs:
- uses: ./
with:
args: --print-problems,--log-level,debug
pr-mode: false
env:
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}

qodana-no-pr: # pr mode disabled and no cloud token
qodana-pr: # pr mode enabled and no cloud token
runs-on: ubuntu-latest
permissions:
checks: write
Expand All @@ -114,9 +115,10 @@ jobs:
- uses: ./
with:
args: --print-problems,--log-level,debug,-l,jetbrains/qodana-js:latest
pr-mode: false
pr-mode: true
use-annotations: false
cache-default-branch-only: true
post-pr-comment: false

azure-dev-release:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 95e5c52

Please sign in to comment.