2021-04-10 15:01:28 +02:00
|
|
|
name: Pull request check
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
types: [opened, edited, synchronize, ready_for_review, review_requested]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-04-10 15:05:14 +02:00
|
|
|
- uses: actions/npm@master
|
2021-04-10 15:01:28 +02:00
|
|
|
- name: Compile license info
|
|
|
|
run: npm run generate:licenses
|
|
|
|
|
|
|
|
- name: Compile and validate themes and layers
|
|
|
|
run: npm run generate:layeroverview
|
|
|
|
|