Skip to content

Bump axios from 1.7.9 to 1.12.0 in /cyclops-ui #962

Bump axios from 1.7.9 to 1.12.0 in /cyclops-ui

Bump axios from 1.7.9 to 1.12.0 in /cyclops-ui #962

Workflow file for this run

name: ui tests
on:
pull_request:
paths:
- "cyclops-ui/**"
push:
paths:
- "cyclops-ui/**"
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
- name: Install dependencies
env:
NODE_OPTIONS: "--dns-result-order=ipv4first"
run: |
cd ${{ github.workspace }}/cyclops-ui
yarn install --network-timeout 60000
- name: Run tests
run: |
cd ${{ github.workspace }}/cyclops-ui
yarn test
- name: Build
run: |
cd ${{ github.workspace }}/cyclops-ui
yarn build