Skip to content

Commit 683546a

Browse files
committed
add reference to test workflow file in staging and production workflows
1 parent 4e76ad0 commit 683546a

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.github/workflows/production.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ on:
55
types: [published]
66

77
jobs:
8+
test:
9+
uses: ./.github/workflows/test.yml
10+
secrets: inherit
11+
812
build-and-push:
913
runs-on: ubuntu-latest
1014
needs: test

.github/workflows/staging.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ on:
66
- main
77

88
jobs:
9+
test:
10+
uses: ./.github/workflows/test.yml
11+
secrets: inherit
12+
913
build-test-and-push:
1014
runs-on: ubuntu-latest
1115
needs: test

0 commit comments

Comments
 (0)