Skip to content

Bump axios from 1.7.3 to 1.7.4 #90

Bump axios from 1.7.3 to 1.7.4

Bump axios from 1.7.3 to 1.7.4 #90

Workflow file for this run

# This workflow will do a clean install of node dependencies and run tests
name: CI
on:
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: '18.x'
- name: Restore node_modules
uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.os }}-${{ hashFiles('yarn.lock') }}
- run: yarn install
- run: yarn test --watch=false