Skip to content

feat: Playtime Tracking config options and sorting #87

feat: Playtime Tracking config options and sorting

feat: Playtime Tracking config options and sorting #87

Workflow file for this run

name: Qodana
on:
workflow_dispatch:
pull_request:
push:
branches:
- master
- develop
- 'release/**'
jobs:
qodana:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18
- uses: actions/cache@v3
id: cache
with:
path: |
**/node_modules
key: ${{ runner.os }}-${{ hashFiles('package.json') }}
- name: Install Dependencies
run: npm install --force
if: steps.cache.outputs.cache-hit != 'true'
env:
CI: true
- name: 'Qodana Scan'
uses: JetBrains/qodana-action@v2023.1.0
with:
args: --baseline,qodana.sarif.json
env:
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}