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:
commit
0426839718
|
@ -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:
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
name: Lint Code Base
|
name: Lint Code Base
|
||||||
|
|
||||||
on: push
|
on: push
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue