Skip to content

fix(VsTable): modify the width defined in the table header to be applied as max-width #1728

fix(VsTable): modify the width defined in the table header to be applied as max-width

fix(VsTable): modify the width defined in the table header to be applied as max-width #1728

Workflow file for this run

name: Chromatic
on:
pull_request:
types: [opened, synchronize]
push:
branches:
- main
jobs:
check-commit-message:
runs-on: ubuntu-latest
outputs:
message: ${{ steps.get_commit_message.outputs.message }}
steps:
- name: Get repo
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Get commit message
id: get_commit_message
run: echo "message=$(git show -s --format=%s)" >> "$GITHUB_OUTPUT"
chromatic-build:
needs: check-commit-message
if: ${{ github.event.action != 'synchronize' || contains(needs.check-commit-message.outputs.message, 'chromatic-build') }}
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install dependencies
run: npm ci
working-directory: ./packages/vlossom
- name: Publish to Chromatic
uses: chromaui/action@latest
with:
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
autoAcceptChanges: main
workingDir: ./packages/vlossom
buildScriptName: build-storybook:chromatic