- Introduced `run-vitest-unit-batches.mjs` script for running unit tests in batches with configurable batch size. - Updated `package.json` to replace `test:unit` command with the batch runner and added `test:unit:single` for direct execution. - Tweaked GitHub workflows (`tests.yml`, `code_quality.yml`) to use updated actions and support batch testing. - Minor formatting improvements in Vue components and workflows for consistent style.
29 lines
771 B
YAML
29 lines
771 B
YAML
name: Qodana Configuration Upload
|
|
|
|
on:
|
|
push:
|
|
branches: [main, dev]
|
|
pull_request:
|
|
branches: [main]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
upload-qodana-config:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v5
|
|
|
|
- name: Run Qodana Configuration Uploader
|
|
env:
|
|
QODANA_CONFIGURATIONS_TOKEN: ${{ secrets.QODANA_CONFIGURATIONS_TOKEN }}
|
|
run: |
|
|
docker run --rm \
|
|
-v $(pwd):/workspace \
|
|
-w /workspace \
|
|
-e QODANA_CONFIGURATIONS_TOKEN=$QODANA_CONFIGURATIONS_TOKEN \
|
|
jetbrains/qodana-configuration-uploader:latest \
|
|
--global-configs-file qodana-global-configurations.yaml \
|
|
--qodana-host https://qodana.cloud
|