Skip to content

Very minor change to prevent many downstream packages from crashing if the DEV env var is set. #591

Very minor change to prevent many downstream packages from crashing if the DEV env var is set.

Very minor change to prevent many downstream packages from crashing if the DEV env var is set. #591

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
test:
name: Node.js ${{ matrix.node_version }}
runs-on: ubuntu-latest
strategy:
matrix:
node_version: [18, 20]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
- run: npm install
- run: npm test -- --serial
env:
FORCE_COLOR: true
CI: false