fix(base-chart): only check datastreams with data types in unsupporte… #165
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 | |
jobs: | |
publish-to-npm: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
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 }} | |