Bump axios from 1.4.0 to 1.6.7 #617
Workflow file for this run
This file contains 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: CI | |
on: | |
pull_request: | |
branches: | |
- "**" | |
# Restricting this to master prevents the push-triggered workflow | |
# from running on pull requests based on branches in this repository | |
# (we only want pull_request-triggered workflow there). | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the code | |
uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 18 | |
registry-url: https://registry.npmjs.org/ | |
- run: yarn install | |
- run: yarn ci | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 |