mirror of
https://github.com/awesome-selfhosted/awesome-selfhosted.git
synced 2025-04-24 13:52:09 +02:00
Workflow to run syntax test on pull requests
This commit is contained in:
parent
35643fc8d4
commit
6dd2bd2120
1 changed files with 14 additions and 0 deletions
14
.github/workflows/pull-request.yml
vendored
Normal file
14
.github/workflows/pull-request.yml
vendored
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
name: Run syntax test
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
branches: [ master ]
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
check-syntax-full:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- run: npm i chalk
|
||||||
|
- run: make check_syntax_full
|
Loading…
Add table
Reference in a new issue