File tree Expand file tree Collapse file tree 4 files changed +1845
-1451
lines changed
Expand file tree Collapse file tree 4 files changed +1845
-1451
lines changed Original file line number Diff line number Diff line change @@ -5,9 +5,9 @@ name: Browsers CI
55
66on :
77 push :
8- branches : [ main, 4.x.x, 5.x.x ]
8+ branches : [ main, 4.x.x ]
99 pull_request :
10- branches : [ main, 4.x.x, 5.x.x ]
10+ branches : [ main, 4.x.x ]
1111
1212jobs :
1313 build :
2323 steps :
2424 - uses : actions/checkout@v4
2525 - name : ${{ matrix.browser-name }}
26- uses : actions/setup-node@v3
26+ uses : actions/setup-node@v4
2727 - run : npm ci
2828 - run : npx playwright install --with-deps
2929 - run : npm run build --if-present
Original file line number Diff line number Diff line change @@ -5,9 +5,9 @@ name: Node.js CI
55
66on :
77 push :
8- branches : [ main, 4.x.x, 5.x.x ]
8+ branches : [ main, 4.x.x ]
99 pull_request :
10- branches : [ main, 4.x.x, 5.x.x ]
10+ branches : [ main, 4.x.x ]
1111
1212jobs :
1313 build :
@@ -17,17 +17,17 @@ jobs:
1717 strategy :
1818 matrix :
1919 node-version :
20- - 16 # to be removed 2023-09-11
21- - 18 # to be removed 2025 -04-30
22- - 19 # to be removed 2023-06-01
23- # See supported Node.js release schedule at https://nodejs.org/en/about/releases/
20+ - 18 # to be removed 2025-04-30
21+ - 20 # to be removed 2026 -04-30
22+ - latest
23+ # See supported Node.js release schedule at https://github.com/nodejs/release#release-schedule
2424
2525 steps :
26- - uses : actions/checkout@v2
26+ - uses : actions/checkout@v4
2727 - name : Use Node.js ${{ matrix.node-version }}
28- uses : actions/setup-node@v1
28+ uses : actions/setup-node@v4
2929 with :
3030 node-version : ${{ matrix.node-version }}
3131 - run : npm ci
3232 - run : npm run build --if-present
33- - run : npm test
33+ - run : npm run test-node
You can’t perform that action at this time.
0 commit comments