Skip to content

BREAKING CHANGE: React 19 support (#318) #93

BREAKING CHANGE: React 19 support (#318)

BREAKING CHANGE: React 19 support (#318) #93

Workflow file for this run

name: Build and Release to npm
on:
push:
branches:
- 'master'
# Cancel any previous run (see: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#concurrency)
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
release-job:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: 'yarn'
- run: |
yarn install --frozen-lockfile
yarn release
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}