Reduce bundle size by replacing lodash-es with es-toolkit #898
Workflow file for this run
This file contains hidden or 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: Build and test | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| - development | |
| push: | |
| branches: | |
| - master | |
| - development | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| cache: npm | |
| node-version: 18 | |
| - run: npm ci | |
| - run: npx prettier --check . | |
| - run: npm run lint | |
| - run: npm run build:lib | |
| - run: npm run build:schematics | |
| - run: npm run test:ci | |
| - run: npm run build:prod | |
| - run: npm run e2e | |
| env: | |
| CI: true | |
| - name: Upload artifacts | |
| uses: actions/upload-artifact@v4 | |
| if: always() | |
| with: | |
| name: test-diff | |
| path: ./dist/.playwright/apps/ng2-charts-demo/**/*-diff.png | |
| retention-days: 30 |