test: skip tree virtual-scroll render (#27771)

* test: skip tree virtual-scroll render

* test: remove branches-ignore, and use head ref to fix when merged
This commit is contained in:
骗你是小猫咪 2020-11-14 21:24:37 +08:00 committed by GitHub
parent 9bcd511ae6
commit 3f126f116f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 5 deletions

View File

@ -2,9 +2,6 @@ name: UI
on:
pull_request_target:
# fix merge commit trigger
branches-ignore:
- master
push:
branches:
- master
@ -17,7 +14,7 @@ jobs:
if: github.event_name == 'pull_request_target'
uses: actions/checkout@master
with:
ref: refs/pull/${{ github.event.pull_request.number }}/merge
ref: refs/pull/${{ github.event.pull_request.number }}/head
- name: checkout
if: github.event_name == 'push'

View File

@ -1,5 +1,5 @@
import { imageDemoTest } from '../../../tests/shared/imageTest';
describe('Tree image', () => {
imageDemoTest('tree');
imageDemoTest('tree', { skip: ['virtual-scroll.md'] });
});