chore(deps): bump axios from 1.3.6 to 1.6.0 in /client #91
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |