Skip to content

Upgrade axios for v4 #264

Upgrade axios for v4

Upgrade axios for v4 #264

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
specs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x, 14.x, 16.x]
steps:
- uses: actions/checkout@v2
- name: Node.js specs ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run test:node
web-specs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v2
- name: Node.js web specs ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
env:
MOZ_HEADLESS: 1
CI: travis
- run: sudo apt install google-chrome-stable firefox
- run: google-chrome-stable --headless --disable-gpu --remote-debugging-port=9222 http://localhost &
- run: npm ci
- run: npm run test:web