Skip to content
This repository was archived by the owner on Oct 17, 2025. It is now read-only.

Bump axios from 0.19.2 to 1.12.0 #6

Bump axios from 0.19.2 to 1.12.0

Bump axios from 0.19.2 to 1.12.0 #6

Workflow file for this run

name: Test and build
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
services:
redis:
image: redis
# Set health checks to wait until redis has started
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 6379:6379
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
- run: yarn install
- run: yarn test
- run: yarn build