Skip to content

chore(deps-dev): Bump word-wrap from 1.2.3 to 1.2.4 #37

chore(deps-dev): Bump word-wrap from 1.2.3 to 1.2.4

chore(deps-dev): Bump word-wrap from 1.2.3 to 1.2.4 #37

Workflow file for this run

name: Test
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
name: ${{ matrix.os }}, Node.js ${{ matrix.node-version }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
# Oldest supported LTS version through current LTS
node-version: [12.x, 14.x, 16.x]
os: [macOS-latest, windows-latest, ubuntu-latest]
fail-fast: false
steps:
- name: Configure git
run: git config --global core.autocrlf false
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install deps
shell: bash
run: |
# npm v7+ (node v16+) has "workspaces" support, which is very useful
# for this project. But since we're testing unmerged code on many
# older versions of node, we have to upgrade npm to a version that
# supports the workspace definitions in our package locks.
npm install -g npm@8
# Install root level, shared dependencies, which are necessary for
# eslint.
npm ci
for i in base backends/*; do
# Install dependencies for each module.
npm --prefix "$i" ci
done
- name: Build Selenium DriverProvider JAR
run: cd base && npm run jar
- name: Test all packages
shell: bash
run: |
for i in base backends/*; do
npm --prefix "$i" test
done