834675f5b6
定义node.js版本用的 node-version,取参数用的matrix.node_version,所以一直取不到。 看了下GitHub Actions的历史记录,以前也取不到版本号,只不过以前GitHub应该是默认使用的16.x版本,现在默认使用18.x版本了,而项目最高支持到17.x,所以以前不报错,但现在报错了。 Signed-off-by: 六楼的雨 <nianqinianyi@163.com>
52 lines
1.5 KiB
YAML
52 lines
1.5 KiB
YAML
name: yudao-ui-admin CI
|
||
|
||
# 在master分支发生push事件时触发。
|
||
on:
|
||
push:
|
||
branches: [ master ]
|
||
# pull_request:
|
||
# branches: [ master ]
|
||
env: # 设置环境变量
|
||
TZ: Asia/Shanghai # 时区(设置时区可使页面中的`最近更新时间`使用时区时间)
|
||
WORK_DIR: yudao-ui-admin #工作目录
|
||
|
||
defaults:
|
||
run:
|
||
shell: bash
|
||
working-directory: yudao-ui-admin
|
||
|
||
jobs:
|
||
build: # 自定义名称
|
||
runs-on: ubuntu-latest # 运行在虚拟机环境ubuntu-latest
|
||
|
||
strategy:
|
||
matrix:
|
||
node_version: [14.x, 16.x]
|
||
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
|
||
|
||
steps:
|
||
- name: Checkout # 步骤1
|
||
uses: actions/checkout@v2 # 使用的动作。格式:userName/repoName。作用:检出仓库,获取源码。 官方actions库:https://github.com/actions
|
||
|
||
- name: Install pnpm
|
||
uses: pnpm/action-setup@v2.0.1
|
||
with:
|
||
version: 6.15.1
|
||
|
||
- name: Set node version to ${{ matrix.node_version }}
|
||
uses: actions/setup-node@v2
|
||
with:
|
||
node-version: ${{ matrix.node_version }}
|
||
cache: "yarn"
|
||
cache-dependency-path: yudao-ui-admin/yarn.lock
|
||
|
||
- name: Install deps
|
||
run: node --version && yarn --version && yarn install
|
||
|
||
- name: Build
|
||
run: yarn build:prod
|
||
|
||
# 查看 workflow 的文档来获取更多信息
|
||
# @see https://github.com/crazy-max/ghaction-github-pages
|
||
|