Skip to content

chore(deps): bump axios from 1.3.6 to 1.6.0 in /client #91

chore(deps): bump axios from 1.3.6 to 1.6.0 in /client

chore(deps): bump axios from 1.3.6 to 1.6.0 in /client #91

Workflow file for this run

name: client CI
on:
push:
branches:
- main
- dev
paths:
- "client/**"
pull_request:
branches:
- main
- dev
paths:
- "client/**"
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: "./client"
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v3
- name: install dependencies
run: npm ci
- name: run tests
run: npm run test
# Runs a single command using the runners shell
#- name: Run a one-line script
# run: echo Hello, world!
# Runs a set of commands using the runners shell
#- name: Run a multi-line script
# run: |
# echo Add other actions to build,
# echo test, and deploy your project.