Skip to content

Support ANSI escapes in strings by replacing \x1b with ␛ #51

Support ANSI escapes in strings by replacing \x1b with ␛

Support ANSI escapes in strings by replacing \x1b with ␛ #51

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
paths-ignore:
- '*.md'
jobs:
nodejs:
name: Node.js
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [^10.18.0, ^12.14.0, ^14]
steps:
- uses: actions/checkout@v1
with:
fetch-depth: 1
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install --no-audit
- run: npm test
- uses: codecov/codecov-action@v1
with:
file: coverage/lcov.info
name: ${{ matrix.os }}/${{ matrix.node-version }}