Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 4 additions & 13 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 20.x]
node-version: [18.x, 20.x, 22.x, 24.x]
steps:
- uses: actions/checkout@v3
- name: Node.js specs ${{ matrix.node-version }}
Expand All @@ -26,7 +26,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
node-version: [22.x]
steps:
- uses: actions/checkout@v3
- name: Linting / Formatting
Expand All @@ -39,22 +39,13 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
node-version: [22.x]
steps:
- uses: actions/checkout@v3
- name: Node.js web specs ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
env:
MOZ_HEADLESS: 1
CI: travis
- name: Setup Firefox
uses: browser-actions/setup-firefox@latest
with:
firefox-version: latest
- name: Setup Chrome
uses: browser-actions/setup-chrome@latest
- run: google-chrome-stable --headless --disable-gpu --remote-debugging-port=9222 http://localhost &
- run: npm ci
- run: npx playwright install
- run: npm run test:web
10 changes: 0 additions & 10 deletions .mocharc.json

This file was deleted.

4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,14 @@ Support table:

| Library Major Version | Node JS Range |
|-----------------------|-------------------|
| v5 | 14+ |
| v5 | 14+ ¹ |
| v4 | 10-18 |
| v3 | 10-16 |
| v2 | 6-14 |
| v1 | 4-12 |

_¹ Note that while Node 14 is supported on v5, it is not tested for. Node versions below 18 do not have active test cases, and rely on community support for patching._

#### Browser support

Browser environments are supported from version 3 onwards of this library.
Expand Down
Loading