Skip to content

fix: Add ref to TextInput component, fixed components styles, fixed s… #13

fix: Add ref to TextInput component, fixed components styles, fixed s…

fix: Add ref to TextInput component, fixed components styles, fixed s… #13

Workflow file for this run

name: Deploy docs
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- run: npm ci
- run: npm run build
env:
TURBO_TOKEN: ${{ secrets.VERCEL_TOKEN }}
TURBO_TEAM: ${{ secrets.VERCEL_TEAM_SLUG }}
- name: Deploy storybook
working-directory: ./packages/docs
run: touch storybook-static/.nojekyll && npm run deploy-storybook -- --ci --existing-output-dir=storybook-static
env:
GH_TOKEN: ${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}