Skip to content

chore(deps): bump axios from 1.6.7 to 1.7.7 #419

chore(deps): bump axios from 1.6.7 to 1.7.7

chore(deps): bump axios from 1.6.7 to 1.7.7 #419

Workflow file for this run

name: Test
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the develop branch
push:
branches: [develop]
pull_request:
branches: [develop]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
strategy:
matrix:
browsers: [firefox, chrome]
node: [20]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
# Install NPM dependencies, cache them correctly
# and run all Cypress tests
- name: Cypress run
uses: cypress-io/github-action@v5
with:
build: yarn build
project: packages/web-app
start: yarn start
wait-on: 'http://localhost:3000'