Skip to content

[Table] [Accessibility] fix #362 - keyboard handling : expand/collapse line with space #1369

[Table] [Accessibility] fix #362 - keyboard handling : expand/collapse line with space

[Table] [Accessibility] fix #362 - keyboard handling : expand/collapse line with space #1369

Workflow file for this run

# .github/workflows/chromatic.yml
# Workflow name
name: 'Chromatic'
# Event for the workflow
on:
pull_request:
branches:
- main
push:
branches:
- main
# List of jobs
jobs:
chromatic-deployment:
# Operating System
runs-on: ubuntu-latest
# Job steps
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup node version
uses: actions/setup-node@v3
with:
node-version: 18
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9.1.2
- name: Install dependencies
run: pnpm i --frozen-lockfile
- name: Build Library
run: pnpm build
# 👇 Adds Chromatic as a step in the workflow
- name: Publish to Chromatic
uses: chromaui/action@v1
# Chromatic GitHub Action options
with:
# 👇 Chromatic projectToken, refer to the manage page to obtain it.
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
workingDir: './docs'
buildScriptName: build