forked from MapComplete/MapComplete
Small tweaks to the deploy scripts
This commit is contained in:
parent
4e1fc46ff2
commit
a8aaf4b219
10 changed files with 65 additions and 19 deletions
16
.github/workflows/pull_request_check.yml
vendored
Normal file
16
.github/workflows/pull_request_check.yml
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
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
|
||||
- name: Compile license info
|
||||
run: npm run generate:licenses
|
||||
|
||||
- name: Compile and validate themes and layers
|
||||
run: npm run generate:layeroverview
|
||||
|
17
.github/workflows/theme_validation.yml
vendored
Normal file
17
.github/workflows/theme_validation.yml
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
name: Theme Validation
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- develop
|
||||
- master
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Compile license info
|
||||
run: npm run generate:licenses
|
||||
|
||||
- name: Compile and validate themes and layers
|
||||
run: npm run generate:layeroverview
|
Loading…
Add table
Add a link
Reference in a new issue