Skip to content

Merge pull request #28 from IBM/dependabot/npm_and_yarn/word-wrap-1.2.4 #46

Merge pull request #28 from IBM/dependabot/npm_and_yarn/word-wrap-1.2.4

Merge pull request #28 from IBM/dependabot/npm_and_yarn/word-wrap-1.2.4 #46

Workflow file for this run

name: node workflow
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, windows-2016]
node-version: [14.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install and test
run: |
npm install
npm run test
env:
CI: true