Support for React 19 (#2559) #3
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: Figma Code Connect | |
on: | |
push: | |
paths: | |
- packages/bezier-react/src/components/**/*.figma.tsx | |
branches: | |
- main | |
jobs: | |
code-connect: | |
name: Code Connect | |
if: github.repository == 'channel-io/bezier-react' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: .nvmrc | |
cache: yarn | |
- name: Install dependencies | |
run: yarn | |
- name: Code Connect | |
run: yarn workspace @channel.io/bezier-react code-connect | |
env: | |
FIGMA_ACCESS_TOKEN: ${{ secrets.FIGMA_ACCESS_TOKEN }} |