This is an automated email from the ASF dual-hosted git repository.
chanholee pushed a commit to branch branch-0.12
in repository https://gitbox.apache.org/repos/asf/zeppelin.git
The following commit(s) were added to refs/heads/branch-0.12 by this push:
new 0ffcc00179 [ZEPPELIN-6286] Add lint check to zeppelin-web-angular CI
workflow
0ffcc00179 is described below
commit 0ffcc00179995b3254ff4f17f7ec47b80ad7c604
Author: SeungYoung Oh <[email protected]>
AuthorDate: Mon Aug 25 21:20:46 2025 +0900
[ZEPPELIN-6286] Add lint check to zeppelin-web-angular CI workflow
### What is this PR for?
This PR updates zeppelin-web-angular's pom.xml to run lint during the CI
workflow.
### What type of PR is it?
Improvement
### Todos
### What is the Jira issue?
*
[ZEPPELIN-6286](https://issues.apache.org/jira/browse/ZEPPELIN/ZEPPELIN-6286)
### How should this be tested?
* Check the CI results,
[run-tests-in-zeppelin-web-angular](https://github.com/seung-00/zeppelin/actions/runs/17176443513/job/48732990974#logs)
### Screenshots (if appropriate)
### Questions:
* Does the license files need to update? No
* Is there breaking changes for older versions? No
* Does this needs documentation? No
Closes #5042 from seung-00/feature/ZEPPELIN-6286.
Signed-off-by: ChanHo Lee <[email protected]>
(cherry picked from commit 1b2ed761343d8ba170159f81860318e336a5f81d)
Signed-off-by: ChanHo Lee <[email protected]>
---
zeppelin-web-angular/pom.xml | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/zeppelin-web-angular/pom.xml b/zeppelin-web-angular/pom.xml
index fb05aea4d4..f7b75e70f3 100644
--- a/zeppelin-web-angular/pom.xml
+++ b/zeppelin-web-angular/pom.xml
@@ -95,6 +95,17 @@
</configuration>
</execution>
+ <execution>
+ <id>npm lint</id>
+ <goals>
+ <goal>npm</goal>
+ </goals>
+ <phase>test</phase>
+ <configuration>
+ <arguments>run lint</arguments>
+ </configuration>
+ </execution>
+
<execution>
<id>npm test</id>
<goals>