Skip to content

Supports axios@1.6 #157

Supports axios@1.6

Supports axios@1.6 #157

name: PR Build and Test
on:
pull_request
jobs:
test:
runs-on: ubuntu-latest
name: Node.JS ${{ matrix.node-version }} Axios ${{ matrix.axios-version }}
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: yarn install --ignore-engines # @typescript-eslint/eslint-plugin@6.10.0 requires node 16+
if: ${{ matrix.node-version == '14.x' }}
- run: yarn install
if: ${{ matrix.node-version != '14.x' }}
- run: yarn test