chore(deps): update dependency react-native-test-app to v2.5.15 (#2599) #2338
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
name: Build and Publish | |
on: | |
push: | |
branches: [main] | |
jobs: | |
build_and_publish: | |
name: "Build and publish" | |
permissions: | |
contents: write # deploy to GitHub Pages (peaceiris/actions-gh-pages) | |
if: ${{ github.repository == 'microsoft/rnx-kit' }} | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup the toolchain | |
uses: ./.github/actions/setup-toolchain | |
- name: Install package dependencies | |
run: | | |
yarn | |
- name: Build and test packages | |
run: | | |
yarn build:ci:all | |
- name: Bundle packages | |
run: | | |
yarn bundle | |
- name: Install package dependencies (docsite) | |
run: | | |
yarn | |
working-directory: docsite | |
- name: Build website | |
run: | | |
yarn build | |
working-directory: docsite | |
- name: Create release PR or publish to npm | |
uses: changesets/action@v1 | |
with: | |
publish: yarn publish:changesets | |
version: yarn version:changesets | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Deploy website | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./docsite/build | |
user_name: github-actions[bot] | |
user_email: 41898282+github-actions[bot]@users.noreply.github.com |