Skip to content

Commit c245af1

Browse files
author
Kristján Oddsson
authored
Update developer dependencies (#1560)
* update developer depenedencies * update CI tasks * update action versions * dont run browsers tests in node tests * actually run npm script
1 parent 75a7bab commit c245af1

File tree

4 files changed

+1845
-1451
lines changed

4 files changed

+1845
-1451
lines changed

.github/workflows/browsers.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ name: Browsers CI
55

66
on:
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

1212
jobs:
1313
build:
@@ -23,7 +23,7 @@ jobs:
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

.github/workflows/node.js.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ name: Node.js CI
55

66
on:
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

1212
jobs:
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

0 commit comments

Comments
 (0)