Skip to content

remove unnecessary method to strip ansi escapes (#115) #58

remove unnecessary method to strip ansi escapes (#115)

remove unnecessary method to strip ansi escapes (#115) #58

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Node.js v${{ matrix.nodejs }} (${{ matrix.os }})
runs-on: ${{ matrix.os }}
timeout-minutes: 3
strategy:
matrix:
nodejs: [18, 20, 22]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.nodejs }}
cache: 'npm'
- name: Install dependencies
run: npm ci --ignore-scripts --no-audit --no-fund
- name: Run tests
run: npm test