Skip to content

fix: added svg to viewport #11

fix: added svg to viewport

fix: added svg to viewport #11

Workflow file for this run

name: Publish
on:
push:
branches:
- 'main'
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20.x
cache: 'npm'
- name: Install dependencies
working-directory: ./packages/react
run: npm install
- name: Build React package
working-directory: ./packages/react
run: npm run build
- name: Publish to npm
working-directory: ./packages/react
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}