Workflow to run syntax test on pull requests
This commit is contained in:
parent
35643fc8d4
commit
6dd2bd2120
|
@ -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…
Reference in New Issue