Skip to content

Bump word-wrap from 1.2.3 to 1.2.4 #144

Bump word-wrap from 1.2.3 to 1.2.4

Bump word-wrap from 1.2.3 to 1.2.4 #144

Workflow file for this run

name: Tests
on:
push:
branches-ignore:
- master # Done in prepublishOnly script
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 15.12
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Cache node modules
uses: actions/cache@v1
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install
run: |
yarn install
- name: Test
run: |
yarn test --coverage
cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
env:
CI: true