Skip to content

Bump word-wrap from 1.2.3 to 1.2.4 #28

Bump word-wrap from 1.2.3 to 1.2.4

Bump word-wrap from 1.2.3 to 1.2.4 #28

Workflow file for this run

name: Build
"on":
- push
jobs:
build:
name: "Build and Test on Node ${{ matrix.node_version }} and ${{ matrix.os }}"
runs-on: "${{ matrix.os }}"
strategy:
matrix:
node_version:
- 16
- 18
- 20
os:
- ubuntu-latest
- macOS-latest
- windows-latest
steps:
- uses: actions/checkout@v3
- name: "Use Node.js ${{ matrix.node_version }}"
uses: actions/setup-node@v3
with:
node-version: "${{ matrix.node_version }}"
- name: npm build and test
run: |
npm ci
npm run lint