Bump axios from 0.19.2 to 1.8.2 #57
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: build | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| coverage: | |
| name: Test and publish test coverage | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v1 | |
| with: | |
| node-version: '12' | |
| - run: npm install | |
| - run: cp .env.sample .env | |
| - uses: paambaati/[email protected] | |
| env: | |
| CC_TEST_REPORTER_ID: ${{ secrets.CodeClimateReporterId }} | |
| with: | |
| # Run our `coverage` script in our `package.json` | |
| coverageCommand: npm run coverage | |
| # By default, this looks for a `coverage` folder in the root of your project, but you may need to change this | |
| coverageLocations: './coverage/clover.xml:clover' | |
| # Great for troubleshooting | |
| debug: true |