Skip to content

Bump axios from 0.21.1 to 1.6.0 in /client #294

Bump axios from 0.21.1 to 1.6.0 in /client

Bump axios from 0.21.1 to 1.6.0 in /client #294

Workflow file for this run

name: client
on: push
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12
- name: npm run format
working-directory: ./client
run: |
npm install
npm run format:check
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12
- name: npm run lint
working-directory: ./client
run: |
npm install
npm run lint
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12
- name: npm run build
working-directory: ./client
run: |
npm install
npm run build
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12
- name: npm run test
working-directory: ./client
run: |
npm install
npm test