Skip to content

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. #778

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.

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. #778

Workflow file for this run

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