fix: add more significant digits to y-axis #171
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: 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 }} | |