Merge pull request #173 from webignition/run-checks-on-pull-request

Run git-auto-commit, linter and tests checks on pull requests
This commit is contained in:
Stefan Zweifel 2021-09-10 15:32:18 +02:00 committed by GitHub
commit 0426839718
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 3 deletions

View File

@ -1,6 +1,10 @@
name: git-auto-commit name: git-auto-commit
on: push on:
push:
branches:
- master
pull_request:
jobs: jobs:
git-auto-commit: git-auto-commit:

View File

@ -1,4 +1,5 @@
name: Lint Code Base name: Lint Code Base
on: push on: push
jobs: jobs:

View File

@ -1,6 +1,10 @@
name: tests name: tests
on: push on:
push:
branches:
- master
pull_request:
jobs: jobs:
tests: tests:
@ -14,4 +18,3 @@ jobs:
- name: Run Tests - name: Run Tests
run: yarn test run: yarn test