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
8 changes: 4 additions & 4 deletions .github/workflows/build-and-deploy-preview-web-ui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
- synchronize
- closed
paths:
- 'ui/**'
- "ui/**"

permissions:
contents: write
Expand All @@ -25,12 +25,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Cache node_modules
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24

- name: Install Dependencies
run: npm ci
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build-and-deploy-prod-web-ui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
branches:
- main
paths:
- 'ui/**'
- "ui/**"

permissions:
contents: write
Expand All @@ -20,12 +20,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Cache node_modules
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24

- name: Install Dependencies
run: npm ci
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
steps:

- name: Fetch Sources
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Create gradle wrapper symlink
run: ln -s ../gradlew gradlew && chmod +x gradlew
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Fetch Sources
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Setup Java
uses: actions/setup-java@v4
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
steps:

- name: Fetch Sources
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Setup Java
uses: actions/setup-java@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
steps:

- name: Fetch Sources
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ github.event.release.tag_name }}

Expand Down
2 changes: 1 addition & 1 deletion intellij-plugin/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pluginRepositoryUrl=https://github.com/Lemick/hoverfly-ui
pluginVersion=1.5.0
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild=234
# pluginUntilBuild=25
pluginUntilBuild=252.*

# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
platformType=IC
Expand Down
21 changes: 21 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

34 changes: 34 additions & 0 deletions ui/.biome.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"root": true,
"extends": [
"biome:recommended",
"biome:recommended-react",
"biome:recommended-typescript"
],
"files": {
"include": ["src", "test", "vite.config.*", "package.json"],
"exclude": ["node_modules", "dist", "build"]
},
"formatter": {
"enabled": true,
"indent_style": "space",
"indent_size": 2,
"line_width": 100,
"quote_style": "double",
"trailing_commas": "all",
"semi_colons": true
},
"linter": {
"enabled": true,
"rules": {
"no-unused-vars": "warn",
"no-undef": "error",
"@typescript-eslint/no-unused-vars": "warn",
"react/jsx-uses-react": "off",
"react/react-in-jsx-scope": "off"
}
},
"diagnostics": {
"reportUnmatchedSuppressions": true
}
}
4 changes: 2 additions & 2 deletions ui/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import com.github.gradle.node.npm.task.NpmTask

plugins {
id("com.github.node-gradle.node") version "7.0.0"
id("com.github.node-gradle.node") version "7.1.0"
}

node {
download.set(true)
version.set("22.17.1")
version.set("24.14.0")
}

tasks.register("build", NpmTask::class) {
Expand Down
Loading
Loading