Add GitHub Actions workflow to validate pull requests
This commit is contained in:
parent
a65afbbb58
commit
7a069a8412
1 changed files with 12 additions and 0 deletions
12
.github/workflows/validate-pr.yml
vendored
Normal file
12
.github/workflows/validate-pr.yml
vendored
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
name: Build and validate PR
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Setup and validate themes
|
||||||
|
uses: ./.github/actions/setup-and-validate
|
Loading…
Reference in a new issue