Skip to content

56 error cannot find module escape string regexp when using this package #9

56 error cannot find module escape string regexp when using this package

56 error cannot find module escape string regexp when using this package #9

Workflow file for this run

name: ci
on:
push:
branches:
- master
pull_request:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 20
- 18
name: Node.js ${{ matrix.node-version }}
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Install Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Run unit tests
run: npm test