mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-30 02:48:55 +08:00
d841acf5d7
* 单测范围修改 (#6133) * 单测范围修改 * 单测范围修改 * feat:下拉框&时间/日期选择器主题适配 (#6134) * feat: select支持主题变量配置 * feat:下拉框&时间/日期选择器主题适配 * fix:更新测试用例 * fix:代码扫描修复 * fix:代码扫描修复 --------- Co-authored-by: hongyang03 <hongyang03@baidu.com> * feat:下拉框主题样式优化 (#6142) * feat:下拉框主题样式优化 * fix:测试用例修复 --------- Co-authored-by: hongyang03 <hongyang03@baidu.com> * fix: 下拉框&日期测试修复 (#6183) Co-authored-by: hongyang03 <hongyang03@baidu.com> * fix:恢复测试用例 (#6189) Co-authored-by: hongyang03 <hongyang03@baidu.com> * fix:恢复测试用例 (#6191) Co-authored-by: hongyang03 <hongyang03@baidu.com> --------- Co-authored-by: qinhaoyan <30946345+qinhaoyan@users.noreply.github.com> Co-authored-by: HongYang <33488114+hy993658052@users.noreply.github.com> Co-authored-by: hongyang03 <hongyang03@baidu.com>
31 lines
718 B
YAML
31 lines
718 B
YAML
name: PR test
|
|
|
|
on:
|
|
pull_request:
|
|
branches: ['**']
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
node-version: [16.x]
|
|
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
persist-credentials: false
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: test
|
|
run: |
|
|
npm i --legacy-peer-deps
|
|
npm run build --workspaces
|
|
npm test --workspaces
|
|
sh deploy-gh-pages.sh
|