Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 23 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
name: IntelliJ Plugin Build
on:
pull_request:
push:
branches:
- '**'
- main

permissions:
contents: read
Expand All @@ -12,12 +13,17 @@ permissions:
jobs:
build:
runs-on: ubuntu-latest
container:
image: gradle:jdk23-corretto
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Prepare environment
uses: actions/setup-java@v4
with:
java-version: 17
cache: 'gradle'
distribution: 'temurin'

# required since test report action uses git
- name: Configure Git Safe Directory
run: |
Expand Down Expand Up @@ -49,3 +55,17 @@ jobs:

- name: Build plugin
run: ./gradlew buildPlugin

- name: 'Qodana Scan'
uses: JetBrains/qodana-action@v2024.3
with:
pr-mode: false
env:
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN_1103458822 }}
QODANA_ENDPOINT: 'https://qodana.cloud'

- name: Upload plugin artifact
uses: actions/upload-artifact@v4
with:
name: context-mapper-intellij-plugin
path: ./build/distributions/context-mapper-intellij-plugin.zip
28 changes: 0 additions & 28 deletions .github/workflows/qodana_code_quality.yml

This file was deleted.

2 changes: 1 addition & 1 deletion lsp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"name": "context-mapper-intellij-plugin",
"private": true,
"dependencies": {
"@lstreckeisen/context-mapper-language-server": "0.1.0"
"@lstreckeisen/context-mapper-language-server": "0.2.0"
}
}
2 changes: 1 addition & 1 deletion qodana.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
version: "1.0"
linter: jetbrains/qodana-jvm-community:2024.3
linter: jetbrains/qodana-jvm:2024.3
profile:
name: qodana.recommended
include:
Expand Down