mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-28 21:19:37 +08:00
29 lines
726 B
YAML
29 lines
726 B
YAML
name: UI
|
|
|
|
on:
|
|
pull_request_target:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
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
|
|
if: github.event_name == 'pull_request_target'
|
|
run: npm run argos -- --token ${{ secrets.ARGOS_TOKEN }} --branch pull/${{ github.event.pull_request.number }}/merge --commit ${{ github.event.pull_request.head.sha }}
|
|
|
|
- name: argos-ci
|
|
if: github.event_name == 'push'
|
|
run: npm run argos -- --token ${{ secrets.ARGOS_TOKEN }} --branch ${GITHUB_REF##*/} --commit ${{ github.sha }}
|