Skip to content

chore(deps-dev): bump follow-redirects from 1.14.9 to 1.15.6 #99

chore(deps-dev): bump follow-redirects from 1.14.9 to 1.15.6

chore(deps-dev): bump follow-redirects from 1.14.9 to 1.15.6 #99

Workflow file for this run

name: Test
on:
pull_request:
branches:
- master
jobs:
linux:
name: "Node ${{ matrix.node }} on Linux: Test"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node:
- 12
- 14
- 16
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: browser-actions/setup-firefox@latest
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: npm
- run: npm ci
- run: npm run build
- run: npm run test:unit
- run: npm run test:e2e
- run: npm run test:integration
windows:
name: "Node ${{ matrix.node }} on Windows: Test"
runs-on: windows-latest
defaults:
run:
shell: bash
strategy:
fail-fast: false
matrix:
node:
- 12
- 14
- 16
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: npm
- run: npm ci
- run: npm run build
- run: npm run test:unit
- run: npm run test:e2e
- run: npm run test:integration