-
Notifications
You must be signed in to change notification settings - Fork 301
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
17c44fe
commit bcd3ce2
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Description: This workflow runs unit + e2e tests, then publishes UI packages | ||
# to a custom dist NPM tag of your choice. This is intended to run | ||
# on release branches (e.g. `in-app-messaging/release`). | ||
# | ||
# Triggered by: This runs whenever you push a commit to the specified release branch. | ||
# | ||
# To use: replace <BRANCH> with your release branch name. Replace <TAG> with | ||
# your NPM tag name. | ||
|
||
name: Test and Publish / react-19 | ||
|
||
on: | ||
# You may change this to `pull_request` if you want to run this on a PRs. | ||
# This can be useful for publishing hotfixes quickly to unblock customers, | ||
# but otherwise, we recommend to use a release branch. | ||
push: | ||
branches: [react/bump-react-types] | ||
|
||
publish: | ||
uses: ./.github/workflows/reusable-tagged-publish.yml | ||
needs: e2e | ||
with: | ||
dist-tag: react-19 | ||
secrets: | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |