chore(deps): bump axios from 1.8.4 to 1.12.1 in /e2e/config-noesm-js #437
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: e2e-exports | |
| on: | |
| push: | |
| jobs: | |
| e2e-exports: | |
| if: "!contains(toJSON(github.event.commits.*.message), '[skip ci]')" | |
| runs-on: ubuntu-latest | |
| env: | |
| DEBUG: currents:* | |
| strategy: | |
| matrix: | |
| node-version: ["20"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install alternative cypress binaries | |
| run: CYPRESS_DOWNLOAD_MIRROR=https://cy-cdn.currents.dev npx cypress@12.17.4 install --force | |
| - name: Install npm | |
| run: npm install -g npm@latest | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Build | |
| run: npm run build | |
| - name: Link monorepo packages | |
| run: npm install | |
| - name: Test Exports | |
| working-directory: ./e2e/exports | |
| run: | | |
| npm run testexports |