From 6dd2bd212090d87452c0da059e6f9929f57dc7ba Mon Sep 17 00:00:00 2001 From: Josef Andersson Date: Wed, 20 Oct 2021 21:04:13 +0200 Subject: [PATCH] Workflow to run syntax test on pull requests --- .github/workflows/pull-request.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/pull-request.yml diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml new file mode 100644 index 00000000..723ec9a0 --- /dev/null +++ b/.github/workflows/pull-request.yml @@ -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