Skip to content

Bump word-wrap from 1.2.3 to 1.2.4 (#49) #32

Bump word-wrap from 1.2.3 to 1.2.4 (#49)

Bump word-wrap from 1.2.3 to 1.2.4 (#49) #32

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build --if-present
- run: npm test
- run: npm run coverage
if: ${{ matrix.node-version == '16.x' }} # only report coverage on latest Node
- name: Coveralls
if: ${{ matrix.node-version == '16.x' }} # only report coverage on latest Node
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}