Skip to content

Commit

Permalink
Run git-auto-commit, linter and tests checks on pull requests
Browse files Browse the repository at this point in the history
  • Loading branch information
webignition committed Sep 10, 2021
1 parent e107e28 commit 10257e2
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/git-auto-commit.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: git-auto-commit

on: push
on:
push:
branches:
- master
pull_request:

jobs:
git-auto-commit:
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/linter.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
name: Lint Code Base
on: push

on:
push:
branches:
- master
pull_request:

jobs:
build:
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: tests

on: push
on:
push:
branches:
- master
pull_request:

jobs:
tests:
Expand All @@ -14,4 +18,3 @@ jobs:

- name: Run Tests
run: yarn test

0 comments on commit 10257e2

Please sign in to comment.