# 🔍 Description ## Issue References 🔗 This pull request fixes # ## Describe Your Solution 🔧 - `setup-node` Github Action v4 release note: https://github.com/actions/setup-node/releases/tag/v4.0.0. Update node version runtime for the actions from node16 to node20. ## Types of changes 🔖 - [ ] Bugfix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to change) ## Test Plan 🧪 #### Behavior Without This Pull Request ⚰️ #### Behavior With This Pull Request 🎉 #### Related Unit Tests --- # Checklists ## 📝 Author Self Checklist - [x] My code follows the [style guidelines](https://kyuubi.readthedocs.io/en/master/contributing/code/style.html) of this project - [x] I have performed a self-review - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation - [x] My changes generate no new warnings - [ ] I have added tests that prove my fix is effective or that my feature works - [ ] New and existing unit tests pass locally with my changes - [x] This patch was not authored or co-authored using [Generative Tooling](https://www.apache.org/legal/generative-tooling.html) ## 📝 Committer Pre-Merge Checklist - [ ] Pull request title is okay. - [ ] No license issues. - [ ] Milestone correctly set? - [ ] Test coverage is ok - [ ] Assignees are selected. - [ ] Minimum number of approvals - [ ] No changes are requested **Be nice. Be informative.** Closes #5842 from bowenliang123/actions-node-4. Closes #5842 8610525a8 [Bowen Liang] Bump actions/setup-node from v3 to v4 Authored-by: Bowen Liang <liangbowen@gf.com.cn> Signed-off-by: Bowen Liang <liangbowen@gf.com.cn>
56 lines
1.6 KiB
YAML
56 lines
1.6 KiB
YAML
name: Web UI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- branch-*
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- branch-*
|
|
|
|
concurrency:
|
|
group: web-ui-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
web-ui:
|
|
name: Kyuubi Web UI check
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v4
|
|
- name: Setup JDK 8
|
|
uses: actions/setup-java@v4
|
|
with:
|
|
distribution: temurin
|
|
java-version: 8
|
|
- name: Setup Maven
|
|
uses: ./.github/actions/setup-maven
|
|
- name: Get NodeJS and PNPM version
|
|
run: |
|
|
NODEJS_VERSION=$(build/mvn help:evaluate -Dexpression=node.version -q -DforceStdout)
|
|
PNPM_VERSION=$(build/mvn help:evaluate -Dexpression=pnpm.version -q -DforceStdout)
|
|
echo "NODEJS_VERSION=${NODEJS_VERSION}" >> "$GITHUB_ENV"
|
|
echo "PNPM_VERSION=${PNPM_VERSION}" >> "$GITHUB_ENV"
|
|
- name: Setup Nodejs and NPM
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: ${{env.NODEJS_VERSION}}
|
|
cache: npm
|
|
cache-dependency-path: ./kyuubi-server/web-ui/package.json
|
|
- name: Cache NPM dependencies
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: ./kyuubi-server/web-ui/node_modules
|
|
key: webui-dependencies-${{ hashFiles('kyuubi-server/web-ui/pnpm-lock.yaml') }}
|
|
restore-keys: webui-dependencies-
|
|
- name: npm run coverage & build
|
|
run: |
|
|
cd ./kyuubi-server/web-ui
|
|
npm install pnpm@${PNPM_VERSION} -g
|
|
pnpm install
|
|
pnpm run coverage
|
|
pnpm run build
|