Skip to content

Fix(web-react): Use Resize Observer hook with better handling of wind… #1395

Fix(web-react): Use Resize Observer hook with better handling of wind…

Fix(web-react): Use Resize Observer hook with better handling of wind… #1395

Workflow file for this run

name: Publish
on:
push:
branches:
- main
tags:
- '**'
jobs:
publish:
if: ${{ startsWith(github.ref, 'refs/tags/') }}
name: Publish package
runs-on: ubuntu-22.04
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- name: Configure Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'yarn'
- name: Install dependencies
run: yarn --immutable --inline-builds
- name: Build
run: yarn build
- name: Authenticate npm
run: ./bin/ci/npm-auth.sh
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Publish
run: make publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}