diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2023-03-30 00:21:25 +0200 |
---|---|---|
committer | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2023-05-10 10:53:57 +0200 |
commit | afb83c315dac08e632d2b6d8d4f1541bd93e1ca8 (patch) | |
tree | b085283f9d3692a1d218e99f23932f65d4671b0a /.github/workflows | |
parent | f36fe9e50d2a83a9bc5c4eb18fdfd5abe754e300 (diff) | |
download | jquery-ui-afb83c315dac08e632d2b6d8d4f1541bd93e1ca8.tar.gz jquery-ui-afb83c315dac08e632d2b6d8d4f1541bd93e1ca8.zip |
Build: Test on Node 10, 16 & 18; fix CI in Node <16
Ref gh-2157
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/test.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9e16860c6..1708fb236 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,8 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [12.x, 14.x] + # Node.js 10 is required by jQuery infra + node-version: [10.x, 16.x, 18.x] steps: - uses: actions/checkout@v3 |