diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index ef4e836..e463942 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -176,6 +176,9 @@ jobs:
name: Verify plugin
needs: [ build ]
runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ platformType: ['IU', 'WS']
steps:
# Free GitHub Actions Environment Disk Space
@@ -209,14 +212,14 @@ jobs:
# Run Verify Plugin task and IntelliJ Plugin Verifier tool
- name: Run Plugin Verification tasks
- run: ./gradlew verifyPlugin -Dplugin.verifier.home.dir=${{ needs.build.outputs.pluginVerifierHomeDir }}
+ run: ./gradlew verifyPlugin -PplatformType=${{ matrix.platformType }} -Dplugin.verifier.home.dir=${{ needs.build.outputs.pluginVerifierHomeDir }}
# Collect Plugin Verifier Result
- name: Collect Plugin Verifier Result
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
- name: pluginVerifier-result
+ name: pluginVerifier-result-${{ matrix.platformType }}
path: ${{ github.workspace }}/build/reports/pluginVerifier
# Prepare a draft release for GitHub Releases page for the manual verification
diff --git a/gradle.properties b/gradle.properties
index ec90ce7..45577e9 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -18,7 +18,7 @@ platformVersion = 2023.3.2
# Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22
platformPlugins =
# Example: platformBundledPlugins = com.intellij.java
-platformBundledPlugins =
+platformBundledPlugins = JavaScript
# Gradle Releases -> https://github.com/gradle/gradle/releases
gradleVersion = 8.10.2
diff --git a/src/main/resources/META-INF/plugin.xml b/src/main/resources/META-INF/plugin.xml
index 2ccc6ed..989fa77 100644
--- a/src/main/resources/META-INF/plugin.xml
+++ b/src/main/resources/META-INF/plugin.xml
@@ -4,12 +4,11 @@
Oxc
iwanabethatguy
- com.intellij.modules.ultimate
-
+ com.intellij.modules.platform
+ JavaScript
messages.MyBundle
-