Skip to content

Commit

Permalink
w3up-client github workflows are reusable via workflow_call. monorepo…
Browse files Browse the repository at this point in the history
… has new .github/workflows/w3up-client.yml that invokes the subpackage test workflow
  • Loading branch information
gobengo committed Mar 27, 2023
1 parent 9b475ff commit f9b8e65
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/w3up-client.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: w3up-client
on:
push:
branches:
- main
paths:
- 'packages/w3up-client/**'
- '.github/workflows/w3up-client.yml'
- 'pnpm-lock.yaml'
pull_request:
paths:
- 'packages/w3up-client/**'
- '.github/workflows/w3up-client.yml'
- 'pnpm-lock.yaml'
jobs:
test:
uses: ./packages/w3up-client/.github/workflows/test.yml
1 change: 1 addition & 0 deletions packages/w3up-client/.github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
on:
workflow_call:
push:
branches:
- main
Expand Down
1 change: 1 addition & 0 deletions packages/w3up-client/.github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
pull_request:
branches:
- main
workflow_call:

jobs:
test:
Expand Down

0 comments on commit f9b8e65

Please sign in to comment.