Skip to content

Fix heights issue and color legend #20

Fix heights issue and color legend

Fix heights issue and color legend #20

Workflow file for this run

name: Publish Package
on:
push:
branches:
- main
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '22.2.0'
registry-url: 'https://registry.npmjs.org'
scope: '@undp-data'
- run: npm install
- run: npm run build
- run: npm publish --access public --non-interactive
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}