Skip to content

Commit

Permalink
chore: only runs CI on pull requests & master (#533)
Browse files Browse the repository at this point in the history
  • Loading branch information
peetzweg authored Nov 27, 2023
1 parent 92a4eba commit 09d584a
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: 'Build project'

on: [push]
on:
push:
branches: [master]
pull_request:
branches: [master]

jobs:
install:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: 'E2E tests'

on: [push]
on:
push:
branches: [master]
pull_request:
branches: [master]

jobs:
contracts-node-binary:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: 'Unit Tests'

on: [push]
on:
push:
branches: [master]
pull_request:
branches: [master]

jobs:
vitest-tests:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/validate-pr-title.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: 'Validate PR title'

on:
pull_request:
branches: [master]
pull_request_target:
types:
- opened
Expand Down

0 comments on commit 09d584a

Please sign in to comment.