Skip to content

Fix Jest tests failing on Node.js 23 due to localStorage initialization #8

Fix Jest tests failing on Node.js 23 due to localStorage initialization

Fix Jest tests failing on Node.js 23 due to localStorage initialization #8

Workflow file for this run

name: Test
on:
push:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
version: [20, 22, "latest"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.version }}
- run: npm ci
- run: npm test