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
6
.github/workflows/git-auto-commit.yml
vendored
6
.github/workflows/git-auto-commit.yml
vendored
@ -1,6 +1,10 @@
|
||||
name: git-auto-commit
|
||||
|
||||
on: push
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
git-auto-commit:
|
||||
|
1
.github/workflows/linter.yml
vendored
1
.github/workflows/linter.yml
vendored
@ -1,4 +1,5 @@
|
||||
name: Lint Code Base
|
||||
|
||||
on: push
|
||||
|
||||
jobs:
|
||||
|
7
.github/workflows/tests.yml
vendored
7
.github/workflows/tests.yml
vendored
@ -1,6 +1,10 @@
|
||||
name: tests
|
||||
|
||||
on: push
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
tests:
|
||||
@ -14,4 +18,3 @@ jobs:
|
||||
|
||||
- name: Run Tests
|
||||
run: yarn test
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user