Skip to content

Commit fd690f9

Browse files
committed
intellij plugin WIP
1 parent 6cd925c commit fd690f9

38 files changed

Lines changed: 1808 additions & 857 deletions

.github/workflows/test.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,20 @@ jobs:
3838
run: bun run build:libs
3939
- name: Run tests
4040
run: bun run test:ci
41+
42+
intellij-plugin:
43+
runs-on: ubuntu-latest
44+
defaults:
45+
run:
46+
working-directory: packages/intellij-plugin
47+
steps:
48+
- uses: actions/checkout@v6
49+
- name: Set up JDK 17
50+
uses: actions/setup-java@v4
51+
with:
52+
java-version: "17"
53+
distribution: "temurin"
54+
- name: Grant execute permission for gradlew
55+
run: chmod +x gradlew
56+
- name: Build IntelliJ plugin
57+
run: ./gradlew build

.idea/.gitignore

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/Project.xml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/codeStyleConfig.xml

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/Project_Default.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/varlock.iml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bun.lock

Lines changed: 19 additions & 857 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

eslint.config.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ export default tseslint.config(
5656
'.magent',
5757
'framework-tests/.test-projects',
5858
'framework-tests/.packed',
59+
'packages/intellij-plugin/build',
5960
],
6061
},
6162

0 commit comments

Comments
 (0)