only prefer earlier for same scale; later larger scales look better #6
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: Lint & Build Custom Plotly.js | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
- run: npm ci | |
- run: npm run lint | |
- run: npm run custom-bundle -- --traces pie,bar,sunburst --transforms none | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: plotly-custom.min.js | |
path: dist/plotly-custom.min.js |