Skip to content

Bump axios from 1.4.0 to 1.6.1 #123

Bump axios from 1.4.0 to 1.6.1

Bump axios from 1.4.0 to 1.6.1 #123

Workflow file for this run

name: Build
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 18
uses: actions/setup-node@v2
with:
node-version: "18"
- name: Setup Yarn v3
run: |
corepack enable
corepack prepare yarn@stable --activate
- name: Install dependencies
run: yarn install --immutable
- name: Build
run: yarn run build
- name: Lint
run: yarn run lint
- name: Test
run: yarn run test