chore(deps): bump @types/node from 20.14.12 to 22.7.7 #300
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: Qodana | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
qodana: | |
# noinspection SpellCheckingInspection | |
if: github.repository_owner == 'ryanvade' | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
pull-requests: write | |
checks: write | |
security-events: write | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Use Node.js 20.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-qodana-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- name: Install Dependencies | |
run: npm ci | |
- name: Run tests | |
run: npm test | |
- name: Archive coverage data | |
uses: actions/upload-artifact@v3 | |
with: | |
name: jest-coverage-data | |
path: .qodana/code-coverage | |
- name: 'Qodana Scan' | |
uses: JetBrains/[email protected] | |
with: | |
args: --apply-fixes | |
push-fixes: pull-request | |
env: | |
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- uses: github/codeql-action/upload-sarif@v2 | |
with: | |
sarif_file: ${{ runner.temp }}/qodana/results/qodana.sarif.json |