Skip to content

Bump word-wrap from 1.2.3 to 1.2.4 #27

Bump word-wrap from 1.2.3 to 1.2.4

Bump word-wrap from 1.2.3 to 1.2.4 #27

Workflow file for this run

name: Build Test
on:
pull_request:
branches:
- main
paths-ignore:
- "**.md"
- "dist/**"
push:
branches:
- main
paths-ignore:
- "**.md"
- "dist/**"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["14", "16", "17"]
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
cache: "yarn"
- run: yarn
- run: yarn build
- run: yarn test
- run: yarn codecov