@@ -12,24 +12,26 @@ jobs:
1212 fail-fast : false
1313 matrix :
1414 container :
15- # Official Node.js images.
16- - node:12
17- - node:14
18- - node:16
19- # RHEL Node.js builds are icu_small without installing the
20- # optional nodejs-full-i18n rpm.
21- - registry.access.redhat.com/ubi8/nodejs-12
22- - registry.access.redhat.com/ubi8/nodejs-14
23- # - registry.access.redhat.com/ubi8/nodejs-16
24- - node:12-slim
15+ # Official Node.js images.
16+ - node:22
17+ - node:24
18+ - node:26
19+ # RHEL Node.js builds are icu_small without installing the
20+ # optional nodejs-full-i18n rpm.
21+ - registry.access.redhat.com/ubi8/nodejs-22
22+ - registry.access.redhat.com/ubi8/nodejs-24
23+ # - registry.access.redhat.com/ubi8/nodejs-26
24+ - node:22-slim
25+ - node:24-slim
26+ - node:26-slim
2527 runs-on : ubuntu-latest
2628 steps :
27- - uses : actions/checkout@v3
28- - uses : actions/checkout@v3
29- with :
30- repository : nodejs/full-icu-test
31- path : full-icu-test
32- - name : Install full-icu
33- run : docker run --rm -v $(pwd):/usr/src/app -w /usr/src/app ${{ matrix.container }} npm i --no-package-lock --unsafe-perm
34- - name : Test full-icu
35- run : docker run --rm -e NODE_ICU_DATA=. -v $(pwd):/usr/src/app -w /usr/src/app ${{ matrix.container }} node ./full-icu-test/test.js
29+ - uses : actions/checkout@v3
30+ - uses : actions/checkout@v3
31+ with :
32+ repository : nodejs/full-icu-test
33+ path : full-icu-test
34+ - name : Install full-icu
35+ run : docker run --rm -v $(pwd):/usr/src/app -w /usr/src/app ${{ matrix.container }} npm i --no-package-lock --unsafe-perm
36+ - name : Test full-icu
37+ run : docker run --rm -e NODE_ICU_DATA=. -v $(pwd):/usr/src/app -w /usr/src/app ${{ matrix.container }} node ./full-icu-test/test.js
0 commit comments