Skip to content

feat: app prop to disable drawer close on outside click #62

feat: app prop to disable drawer close on outside click

feat: app prop to disable drawer close on outside click #62

Workflow file for this run

name: Storybook
on:
push:
branches:
- master
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
storybook:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
token: ${{ secrets.ADMIN_TOKEN }}
- name: Configure CI Git User
run: |
git config --global user.name 'Release bot'
git config --global user.email '[email protected]'
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '16.x'
cache: 'yarn'
- name: Install dependencies
run: yarn
- name: Deploy storybook
run: yarn storybook:deploy -- --ci
env:
GH_TOKEN: ${{ secrets.ADMIN_TOKEN }}