Skip to content

fix: add more significant digits to y-axis #171

fix: add more significant digits to y-axis

fix: add more significant digits to y-axis #171

Workflow file for this run

name: NPM Publish
on:
push:
branches:
- main
- main-fork-of-7.1.6
jobs:
publish-to-npm:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '16.17.1'
registry-url: 'https://registry.npmjs.org'
- name: Install and Build
run: |
yarn install
yarn build
- name: Publish
run: yarn run publishToNpm
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}