Skip to content

chore: bump axios from 0.21.2 to 0.28.0 (#286) #5

chore: bump axios from 0.21.2 to 0.28.0 (#286)

chore: bump axios from 0.21.2 to 0.28.0 (#286) #5

# This is a workflow to run extension tests
name: Extension tests
# Controls when the action will run.
on:
push:
branches:
- development
- master
pull_request:
branches:
- development
jobs:
build:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v1
with:
node-version: 12.x
- name: Install dependencies
run: npm install
- name: Run extension tests in linux
run: xvfb-run -a npm test
if: runner.os == 'Linux'
- name: Run extension tests
run: npm test
if: runner.os != 'Linux'