 ### What changes were proposed in this pull request? - Added Husky to enforce code quality with automated tasks during Git events. - Added lint-staged for optimized linting on staged files before each commit. ### Why are the changes needed? Enhances code quality. ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? Local test. Closes #2250 from tiny-dust/CELEBORN-1240. Lead-authored-by: tiny-dust <idioticzhou@foxmail.com> Co-authored-by: 周顺顺 <idioticzhou@foxmail.com> Signed-off-by: SteNicholas <programgeek@163.com>
84 lines
3.1 KiB
XML
84 lines
3.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
~ Licensed to the Apache Software Foundation (ASF) under one or more
|
|
~ contributor license agreements. See the NOTICE file distributed with
|
|
~ this work for additional information regarding copyright ownership.
|
|
~ The ASF licenses this file to You under the Apache License, Version 2.0
|
|
~ (the "License"); you may not use this file except in compliance with
|
|
~ the License. You may obtain a copy of the License at
|
|
~
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
|
~
|
|
~ Unless required by applicable law or agreed to in writing, software
|
|
~ distributed under the License is distributed on an "AS IS" BASIS,
|
|
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
~ See the License for the specific language governing permissions and
|
|
~ limitations under the License.
|
|
-->
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>org.apache.celeborn</groupId>
|
|
<artifactId>celeborn-parent_${scala.binary.version}</artifactId>
|
|
<version>${project.version}</version>
|
|
</parent>
|
|
|
|
<artifactId>celeborn-web_${scala.binary.version}</artifactId>
|
|
<packaging>pom</packaging>
|
|
<name>Celeborn Web</name>
|
|
|
|
<properties>
|
|
<!-- When updating `node.version` and `pnpm.version`, alse need to update the `node` and `pnpm` versions in `.github/workflows/web_lint.yml` -->
|
|
<build.node.version>v20.11.0</build.node.version>
|
|
<build.pnpm.version>8.14.3</build.pnpm.version>
|
|
</properties>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>com.github.eirslett</groupId>
|
|
<artifactId>frontend-maven-plugin</artifactId>
|
|
<version>1.15.0</version>
|
|
|
|
<executions>
|
|
<execution>
|
|
<id>install node and pnpm</id>
|
|
<goals>
|
|
<goal>install-node-and-pnpm</goal>
|
|
</goals>
|
|
<configuration>
|
|
<nodeVersion>${build.node.version}</nodeVersion>
|
|
<pnpmVersion>${build.pnpm.version}</pnpmVersion>
|
|
<installDirectory>${project.build.directory}</installDirectory>
|
|
</configuration>
|
|
</execution>
|
|
|
|
<execution>
|
|
<id>pnpm install</id>
|
|
<goals>
|
|
<goal>pnpm</goal>
|
|
</goals>
|
|
<phase>generate-resources</phase>
|
|
<configuration>
|
|
<arguments>install</arguments>
|
|
<workingDirectory>${project.build.directory}</workingDirectory>
|
|
</configuration>
|
|
</execution>
|
|
|
|
<execution>
|
|
<id>pnpm run lint</id>
|
|
<goals>
|
|
<goal>pnpm</goal>
|
|
</goals>
|
|
<phase>generate-resources</phase>
|
|
<configuration>
|
|
<arguments>run lint</arguments>
|
|
<workingDirectory>${project.build.directory}</workingDirectory>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|