mirror of
https://github.com/BTMuli/TeyvatGuide.git
synced 2026-01-24 16:12:25 +08:00
🔥 移除qodana
This commit is contained in:
26
.github/workflows/qodana_code_quality.yml
vendored
26
.github/workflows/qodana_code_quality.yml
vendored
@@ -1,26 +0,0 @@
|
||||
name: Qodana
|
||||
on:
|
||||
workflow_dispatch:
|
||||
# push:
|
||||
# branches:
|
||||
# - master
|
||||
|
||||
jobs:
|
||||
qodana:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: setup node
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 24.8.0
|
||||
- name: setup pnpm
|
||||
uses: pnpm/action-setup@v2
|
||||
with:
|
||||
version: 10.16.1
|
||||
- name: Install dependencies
|
||||
run: pnpm install --no-frozen-lockfile
|
||||
- name: "Qodana Scan"
|
||||
uses: JetBrains/qodana-action@v2023.3
|
||||
env:
|
||||
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}
|
||||
@@ -7,8 +7,6 @@ dist
|
||||
src-tauri/target
|
||||
# Pnpm
|
||||
pnpm-lock.yaml
|
||||
# Qodana
|
||||
qodana.yaml
|
||||
# sourse
|
||||
*.webp
|
||||
*.png
|
||||
|
||||
@@ -27,7 +27,6 @@ export default [
|
||||
"src/data/**/*.json",
|
||||
"src-tauri/tauri.conf.json",
|
||||
"src-tauri/**/*.json",
|
||||
"qodana.yaml",
|
||||
"node_modules",
|
||||
".github",
|
||||
],
|
||||
|
||||
28
qodana.yaml
28
qodana.yaml
@@ -1,28 +0,0 @@
|
||||
# -------------------------------------------------------------------------------#
|
||||
# Qodana analysis is configured by qodana.yaml file #
|
||||
# https://www.jetbrains.com/help/qodana/qodana-yaml.html #
|
||||
# -------------------------------------------------------------------------------#
|
||||
version: "1.0"
|
||||
# Specify inspection profile for code analysis
|
||||
profile:
|
||||
name: qodana.starter
|
||||
# Enable inspections
|
||||
# include:
|
||||
# - name: <SomeEnabledInspectionId>
|
||||
# Disable inspections
|
||||
# exclude:
|
||||
# - name: <SomeDisabledInspectionId>
|
||||
# paths:
|
||||
# - <path/where/not/run/inspection>
|
||||
# The following options are only applied in CI/CD environment
|
||||
# These options are ignored during local run
|
||||
# Execute shell command before Qodana execution
|
||||
# bootstrap: sh ./prepare-qodana.sh
|
||||
# Install IDE plugins before Qodana execution
|
||||
# plugins:
|
||||
# - id: <plugin.id> #(plugin id can be found at https://plugins.jetbrains.com)
|
||||
# Specify Qodana linter for analysis
|
||||
linter: jetbrains/qodana-js:latest
|
||||
include:
|
||||
- name: CheckDependencyLicenses
|
||||
|
||||
Reference in New Issue
Block a user