mirror of https://github.com/vuejs/core.git
17 lines
362 B
YAML
17 lines
362 B
YAML
name: 'ci'
|
|
on:
|
|
push:
|
|
branches:
|
|
- '**'
|
|
tags:
|
|
- '!**'
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
- minor
|
|
|
|
jobs:
|
|
test:
|
|
if: ${{ ! startsWith(github.event.head_commit.message, 'release:') && (github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository) }}
|
|
uses: ./.github/workflows/test.yml
|