Skip to content

chore(deps): bump word-wrap from 1.2.3 to 1.2.4 #330

chore(deps): bump word-wrap from 1.2.3 to 1.2.4

chore(deps): bump word-wrap from 1.2.3 to 1.2.4 #330

Workflow file for this run

name: build
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
test:
name: Test on node ${{ matrix.node_version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: [14, 16, 18]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: npm install, build, test and coverage
env:
SKIP_PREFLIGHT_CHECK: true
CODECOV_TOKEN: ${{ secrets.codecov_token }}
run: |
npm install
npm run build --if-present
npm run test
npm run coverage