build(deps): bump node-forge and webpack-dev-server in /console-ui #2127
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: PR-CI | |
| on: | |
| pull_request: | |
| branches: [ develop, v2.x-develop ] | |
| jobs: | |
| dist-tar: | |
| name: Build distribution tar | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 120 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| submodules: true | |
| - uses: actions/setup-java@v3 | |
| with: | |
| distribution: "temurin" | |
| java-version: "17" | |
| cache: "maven" | |
| - name: Build distribution tar | |
| run: | | |
| mvn -Prelease-nacos -DskipTests clean install -U -e -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn | |
| - uses: actions/upload-artifact@v4 | |
| name: Upload distribution tar | |
| with: | |
| name: nacos | |
| path: distribution/target/nacos-server-*.tar.gz | |
| - name: Save PR number | |
| run: | | |
| mkdir -p ./pr | |
| echo ${{ github.event.pull_request.number }} > ./pr/pr.txt | |
| - uses: actions/upload-artifact@v4 | |
| name: Upload PR number | |
| with: | |
| name: pr | |
| path: pr/pr.txt |