chore: bump axios to 1.8.4 #258
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: Run Node.js SDK E2E Tests | |
| on: | |
| push: | |
| branches: | |
| - '**' | |
| - '!master' | |
| jobs: | |
| run-tests: | |
| if: github.actor != 'dependabot[bot]' | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node-version: [18, 20, 22] | |
| os: [ubuntu-latest] | |
| include: | |
| - perform-attestation: true | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/cache@v1 | |
| with: | |
| path: ~/.npm | |
| key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
| restore-keys: | | |
| ${{ runner.os }}-node- | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - run: npm install | |
| - run: npm run lint | |
| - run: npm run test:e2e | |
| env: | |
| EV_APP_UUID: ${{ secrets.EV_APP_UUID_V5 }} | |
| EV_API_KEY: ${{ secrets.EV_API_KEY_V5 }} | |
| EV_FUNCTION_NAME: ${{ secrets.EV_FUNCTION_NAME_V5 }} | |
| EV_INITIALIZATION_ERROR_FUNCTION_NAME: ${{ secrets.EV_INITIALIZATION_ERROR_FUNCTION_NAME }} | |
| EV_SYNTHETIC_ENDPOINT_URL: ${{ secrets.EV_SYNTHETIC_ENDPOINT_URL }} |