diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2022-11-17 13:22:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-17 13:22:21 +0100 |
commit | f62d8e2159baf1eabf3b760b85b2dda56d569a09 (patch) | |
tree | 77b39b2a3d708bd5257a47bdfe70a9fbc270618f /.github/workflows/node.js.yml | |
parent | 3299236c898136dc1aa57dc5148811203e931895 (diff) | |
download | jquery-f62d8e2159baf1eabf3b760b85b2dda56d569a09.tar.gz jquery-f62d8e2159baf1eabf3b760b85b2dda56d569a09.zip |
Build: Test on Node.js 18 & 19, stop testing on Node 12
Closes gh-5160
Diffstat (limited to '.github/workflows/node.js.yml')
-rw-r--r-- | .github/workflows/node.js.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 63976c7c5..4ea1e23cc 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -10,7 +10,7 @@ jobs: matrix: # Node.js 10 is required by jQuery infra # Do not remove 16.x until jsdom tests are re-enabled on newer Node.js versions. - NODE_VERSION: [10.x, 12.x, 14.x, 16.x, 17.x] + NODE_VERSION: [10.x, 14.x, 16.x, 18.x, 19.x] NPM_SCRIPT: ["test:browserless"] include: - NAME: "Browser tests: full build, Chrome & Firefox stable" |