Skip to content

Commit 772536a

Browse files
committed
build: runs tests on pushes
1 parent f09ddad commit 772536a

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.github/workflows/tests.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,17 @@ name: Tests
22

33
# Controls when the workflow will run
44
on:
5-
# Triggers the workflow on push or pull request events but only for the dev branch
5+
# Triggers the workflow on push or pull request events but only for the main and release branches
6+
push:
7+
branches:
8+
- main
9+
- release/*
10+
11+
# Triggers the workflow on push or pull request events but only for the main and release branches
612
pull_request:
7-
branches-ignore:
8-
- production
13+
branches:
14+
- main
15+
- release/*
916

1017
# Allows you to run this workflow manually from the Actions tab
1118
workflow_dispatch:

0 commit comments

Comments
 (0)