Skip to content

Bump word-wrap from 1.2.3 to 1.2.4 (#52) #93

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

Bump word-wrap from 1.2.3 to 1.2.4 (#52) #93

Workflow file for this run

---
name: Build
on: ["push", "pull_request"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
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 test
- run: npm run coverage
- name: Coveralls
uses: coverallsapp/github-action@v1.1.0
env:
NODE_COVERALLS_DEBUG: 1
with:
github-token: ${{ secrets.github_token }}
parallel: true
flag-name: ${{ matrix.node-version }}
path-to-lcov: ./lcov.info
finish:
needs: build
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@v1.1.0
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true