Skip to content

chore(table-chart): allow chart to grow to full width #534

chore(table-chart): allow chart to grow to full width

chore(table-chart): allow chart to grow to full width #534

Workflow file for this run

name: Publish
on:
workflow_dispatch:
push:
branches:
- main
paths:
- 'packages/**'
jobs:
build-and-deploy:
name: Build
runs-on: ubuntu-latest
steps:
- name: Use Node.js 20.8.1
uses: actions/setup-node@v1
with:
node-version: 20.8.1
- name: Checkout Repo
uses: actions/checkout@master
- name: Install Dependencies
run: npm ci --legacy-peer-deps
- name: Build Library
run: npm run build
- name: Release
run: npm run semantic-release || true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}