This repository was archived by the owner on Aug 5, 2025. It is now read-only.
build(deps): bump axios from 1.7.4 to 1.8.2 in /example #1336
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: Pull Request Build & Test | |
| on: pull_request | |
| jobs: | |
| main: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v2 | |
| with: | |
| node-version: 18 | |
| - name: Build & Test | |
| run: | | |
| yarn install --frozen-lockfile | |
| yarn test:ci | |
| yarn build | |
| - name: Coveralls | |
| uses: coverallsapp/github-action@v1.1.2 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| path-to-lcov: ./coverage/lcov.info | |
| parallel: true | |
| finish: | |
| needs: main | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Coveralls Finished | |
| uses: coverallsapp/github-action@v1.1.2 | |
| with: | |
| github-token: ${{ secrets.github_token }} | |
| parallel-finished: true |