fix: remove border of expanded row when we hide row action cell #89
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: 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 }} |