Skip to content

feat: 升级nacos至2.4.0.1,自签名证书增加密码 #117

feat: 升级nacos至2.4.0.1,自签名证书增加密码

feat: 升级nacos至2.4.0.1,自签名证书增加密码 #117

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: JavaScript CI with Node.js
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
node-version: [ 18.x ]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: "./ui/package-lock.json"
- name: Cache Clean
run: npm cache clean --force
- name: Install
run: npm install --prefix ./ui
- name: Build
run: npm run build --prefix ./ui