Skip to content

build: bump word-wrap from 1.2.3 to 1.2.4 #15

build: bump word-wrap from 1.2.3 to 1.2.4

build: bump word-wrap from 1.2.3 to 1.2.4 #15

Workflow file for this run

name: Build and Test
on: [push, pull_request]
jobs:
unit:
name: Unit tests
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18, 20]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: 'npm'
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm test
- run: npm run benchmark
- name: Report coverage
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
lint:
if: github.event_name != 'pull_request'
name: ESLint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: 'npm'
node-version: 20
- run: npm ci
- run: npx eslint .