mirror of
https://github.com/servo/servo
synced 2026-05-13 18:37:30 +02:00
Split out the quick check GitHub action (which is really only meant for forks). This prevents the quick check from running twice for PRs from branches on the upstream repository. Also rename the WPT export action file to make it clearer that it runs for pull requests.
23 lines
468 B
YAML
23 lines
468 B
YAML
name: Pull request
|
|
on:
|
|
pull_request:
|
|
types: ['opened', 'synchronize']
|
|
branches: ["**"]
|
|
|
|
|
|
jobs:
|
|
build-linux:
|
|
name: Linux
|
|
if: github.repository == 'servo/servo'
|
|
uses: ./.github/workflows/linux.yml
|
|
with:
|
|
layout: '2013'
|
|
unit-tests: true
|
|
|
|
build-linux-layout-2020:
|
|
name: Linux (layout-2020)
|
|
if: github.repository == 'servo/servo'
|
|
uses: ./.github/workflows/linux.yml
|
|
with:
|
|
layout: '2020'
|
|
unit-tests: false |