Skip to content

fix(deps): update dependency axios to ^0.28.1 #2152

fix(deps): update dependency axios to ^0.28.1

fix(deps): update dependency axios to ^0.28.1 #2152

Workflow file for this run

name: Workflow
on:
# Run on pushes to main..
push:
branches:
- main
# ..and any pull request.
pull_request:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '16'
check-latest: true
- uses: actions/cache@v4
with:
path: |
node_modules
*/*/node_modules
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- run: yarn
- run: yarn typecheck
- run: yarn lint
- run: yarn format:check