fix: react typo #8
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
on: | |
push: | |
branches: | |
- master | |
permissions: | |
contents: write | |
pull-requests: write | |
name: release-please | |
jobs: | |
release-please: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Release | |
id: release | |
if: ${{ github.ref_name == 'master' }} | |
uses: google-github-actions/release-please-action@v3 | |
with: | |
release-type: node | |
default-branch: master | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Checkout | |
uses: actions/checkout@v3 | |
if: ${{ steps.release.outputs.releases_created }} | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
if: ${{ steps.release.outputs.releases_created }} | |
with: | |
version: 8 | |
# Setup .npmrc file to publish to npm | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18.x' | |
registry-url: 'https://registry.npmjs.org' | |
cache: 'pnpm' | |
if: ${{ steps.release.outputs.releases_created }} | |
- name: CI | |
run: pnpm install --frozen-lockfile | |
if: ${{ steps.release.outputs.releases_created }} | |
- name: Build | |
run: pnpm build:lib | |
if: ${{ steps.release.outputs.releases_created }} | |
- name: Publish | |
run: pnpm publish | |
if: ${{ steps.release.outputs.releases_created }} | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |