Skip to content

Bump word-wrap from 1.2.3 to 1.2.4 #599

Bump word-wrap from 1.2.3 to 1.2.4

Bump word-wrap from 1.2.3 to 1.2.4 #599

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
tests:
name: Tests and validations
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
node: [14, 15, 16, 17, 18]
steps:
- name: Git checkout
uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm install
- name: Run tests
run: npm run test
- name: Run coverage report
uses: codecov/codecov-action@v3
- name: Run validations
run: npm run lint