Skip to content

Bump word-wrap from 1.2.3 to 1.2.4 #90

Bump word-wrap from 1.2.3 to 1.2.4

Bump word-wrap from 1.2.3 to 1.2.4 #90

Workflow file for this run

name: Build, lint, and test
on:
pull_request:
branches:
- main
jobs:
Test:
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '15.x'
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- run: npm run check-versions
- run: npm ci
- run: npm -ws run build
- run: npm -ws run lint
- run: npm -ws run test