Skip to content

Configure Qodana tool #12

Configure Qodana tool

Configure Qodana tool #12

Workflow file for this run

name: integration-checks
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn
- name: Run checks
run: yarn check:all
- name: Run tests
run: yarn test:coverage
- name: Build
run: yarn build
quality:
runs-on: ubuntu-latest
steps:
- name: 'Qodana Scan'
uses: JetBrains/qodana-action@main
env:
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}