Files
servo/.github/workflows/pull-request.yml
Martin Robinson cf4160b6ed Reorganize the workflow files for pull requests a little.
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.
2023-04-11 20:10:11 +02:00

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