Skip to content

Axios update (#11)

Axios update (#11) #22

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
# workflow_dispatch:
jobs:
test:
name: Test
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
matrix:
node: [ 14, 16, 18]
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: npm install
- name: Run Unit Tests
run: npm run ci