mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-01 11:39:28 +08:00
5669d9c65a
* fix lose test script * fix action cache not enable pr target * add ui yml
20 lines
395 B
YAML
20 lines
395 B
YAML
name: UI
|
|
|
|
on: [push, pull_request_target]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@master
|
|
|
|
- name: install
|
|
run: npm install
|
|
|
|
- name: test
|
|
run: npm run test-image
|
|
|
|
- name: argos-ci
|
|
run: npm run argos -- --token ${{ secrets.ARGOS_TOKEN }} --branch ${GITHUB_REF##*/} --commit ${GITHUB_SHA}
|