Run git-auto-commit, linter and tests checks on pull requests
This commit is contained in:
parent
e107e28c4e
commit
10257e2994
6
.github/workflows/git-auto-commit.yml
vendored
6
.github/workflows/git-auto-commit.yml
vendored
@ -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:
|
||||||
|
7
.github/workflows/linter.yml
vendored
7
.github/workflows/linter.yml
vendored
@ -1,5 +1,10 @@
|
|||||||
name: Lint Code Base
|
name: Lint Code Base
|
||||||
on: push
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
pull_request:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
7
.github/workflows/tests.yml
vendored
7
.github/workflows/tests.yml
vendored
@ -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
Block a user