Update package-lock.json to reflect dependency version upgrades and clean up unused packages. Notable updates include @babel packages to versions 7.27.1 and 7.28.4, axios to 1.12.2, and form-data to 4.0.4. Removed deprecated dependencies and added new ones for improved functionality. #777
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: CI | |
| on: | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 18 | |
| - run: npm ci | |
| - run: npm run lint | |
| - run: npm run build | |
| - run: | | |
| touch .env | |
| echo UNIT_TOKEN=${{ secrets.UNIT_TOKEN }} >> .env | |
| echo UNIT_API_URL=${{ secrets.UNIT_API_URL }} >> .env | |
| echo TEST_COUNTERPARTY_PLAID_TOKEN=${{ secrets.TEST_COUNTERPARTY_PLAID_TOKEN }} >> .env | |
| - run: npm run test |