Skip to content
Draft
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
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Set up NodeJS
uses: actions/setup-node@v4
with:
node-version: "18.17.0"
node-version: "22"

- name: Setup Go
uses: actions/setup-go@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/compatibility-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: "18.17.0"
node-version: "22"

- uses: actions/setup-java@v3
with:
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
- name: Setup NodeJS
uses: actions/setup-node@v4
with:
node-version: "18.17.0"
node-version: "22"

- name: Setup Go
uses: actions/setup-go@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-publish-exp-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Set up NodeJS
uses: actions/setup-node@v4
with:
node-version: "18.17.0"
node-version: "22"

- name: Set up Go
uses: actions/setup-go@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Set up NodeJS
uses: actions/setup-node@v4
with:
node-version: "18.17.0"
node-version: "22"

- name: Set up Go
uses: actions/setup-go@v4
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/esti.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
if: steps.restore-cache.outputs.cache-hit != 'true'
uses: actions/setup-node@v3
with:
node-version: 18
node-version: "18"
cache: "npm"
cache-dependency-path: webui/package-lock.json

Expand Down Expand Up @@ -1253,7 +1253,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: "18"
cache: "npm"
cache-dependency-path: webui/package-lock.json
- name: Install dependencies
Expand Down Expand Up @@ -1329,7 +1329,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: "18"
cache: "npm"
cache-dependency-path: webui/package-lock.json
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Setup NodeJS
uses: actions/setup-node@v4
with:
node-version: "18.17.0"
node-version: "22"

- name: Setup Go
uses: actions/setup-go@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "18.17.0"
node-version: "22"
cache: "npm"
cache-dependency-path: webui/package-lock.json
- name: install UI dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
go-version: "1.24"
- uses: actions/setup-node@v4
with:
node-version: "18.17.0"
node-version: "22"
cache: "npm"
cache-dependency-path: webui/package-lock.json
- uses: bufbuild/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ build-binaries:

lint: ## Lint code
$(GOCMD) run $(GOLANGCI_LINT) run $(GOLANGCI_LINT_FLAGS)
npx [email protected] $(UI_DIR)/src --ext .js,.jsx,.ts,.tsx
cd $(UI_DIR) && $(NPM) run lint --deny-warnings

esti: ## run esti (system testing)
$(GOTEST) -v ./esti --args --system-tests
Expand Down
2 changes: 0 additions & 2 deletions webui/.eslintignore

This file was deleted.

34 changes: 0 additions & 34 deletions webui/.eslintrc

This file was deleted.

10 changes: 10 additions & 0 deletions webui/.oxlintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"plugins": ["unicorn", "typescript", "oxc", "react"],
"categories": {
"correctness": "error",
"perf": "error"
},
"rules": {
"unicorn/prefer-set-has": "off"
}
}
Loading
Loading