Skip to content

build(deps-dev): bump word-wrap from 1.2.3 to 1.2.4 #125

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

build(deps-dev): bump word-wrap from 1.2.3 to 1.2.4 #125

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
paths-ignore:
- dist/**
pull_request:
branches: [ main ]
types: [ opened, edited, synchronize ]
jobs:
eslint:
name: ESLint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js (.nvmrc)
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
- run: npm ci
- run: npm run test:eslint
test:
name: Mocha Tests
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 14.x, 16.x, 18.x ]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run test:mocha