Skip to content

Commit 4586294

Browse files
committedSep 24, 2020
test: removed Node 15 again from test matrix
1 parent 495c948 commit 4586294

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎.github/workflows/build-and-test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
node-version: [12.x, 13.x, 14.x, 15.x]
19+
node-version: [12.x, 13.x, 14.x]
2020

2121
steps:
2222
- name: Checkout
@@ -46,7 +46,7 @@ jobs:
4646
with:
4747
run: npm run test:ci
4848
env:
49-
TEST_BROWSERSTACK: ${{ startsWith(matrix.node-version, '15') }}
49+
TEST_BROWSERSTACK: ${{ startsWith(matrix.node-version, '14') }}
5050
TEST_PROBE_ONLY: ${{ github.ref != 'refs/heads/main' }}
5151
BS_USERNAME: ${{ secrets.BS_USERNAME }}
5252
BS_ACCESSKEY: ${{ secrets.BS_ACCESSKEY }}

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ It's also very simple to use and get started with. DOMPurify was [started in Feb
1010

1111
DOMPurify is written in JavaScript and works in all modern browsers (Safari (10+), Opera (15+), Internet Explorer (10+), Edge, Firefox and Chrome - as well as almost anything else using Blink or WebKit). It doesn't break on MSIE6 or other legacy browsers. It either uses [a fall-back](#what-about-older-browsers-like-msie8) or simply does nothing.
1212

13-
Our automated tests cover [15 different browsers](https://github.com/cure53/DOMPurify/blob/main/test/karma.custom-launchers.config.js#L5) right now, more to come. We also cover Node.js v12.0.0 and v13.0.0, running DOMPurify on [jsdom](https://github.com/tmpvar/jsdom). Older Node.js versions are known to work as well.
13+
Our automated tests cover [15 different browsers](https://github.com/cure53/DOMPurify/blob/main/test/karma.custom-launchers.config.js#L5) right now, more to come. We also cover Node.js v12, v13, v14.0.0, running DOMPurify on [jsdom](https://github.com/tmpvar/jsdom). Older Node.js versions are known to work as well.
1414

1515
DOMPurify is written by security people who have vast background in web attacks and XSS. Fear not. For more details please also read about our [Security Goals & Threat Model](https://github.com/cure53/DOMPurify/wiki/Security-Goals-&-Threat-Model). Please, read it. Like, really.
1616

0 commit comments

Comments
 (0)
Please sign in to comment.