Skip to content

Bump word-wrap from 1.2.3 to 1.2.4 #38

Bump word-wrap from 1.2.3 to 1.2.4

Bump word-wrap from 1.2.3 to 1.2.4 #38

Workflow file for this run

name: Node.js CI
on: [push, pull_request]
jobs:
build_test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [10, 12, 14]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Tests and coverage
run: yarn coverage
- name: Build
run: yarn build