Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update developer dependencies #1560

Merged
merged 5 commits into from
Dec 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/browsers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ name: Browsers CI

on:
push:
branches: [ main, 4.x.x, 5.x.x ]
branches: [ main, 4.x.x ]
pull_request:
branches: [ main, 4.x.x, 5.x.x ]
branches: [ main, 4.x.x ]

jobs:
build:
Expand All @@ -23,7 +23,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: ${{ matrix.browser-name }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
- run: npm ci
- run: npx playwright install --with-deps
- run: npm run build --if-present
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ name: Node.js CI

on:
push:
branches: [ main, 4.x.x, 5.x.x ]
branches: [ main, 4.x.x ]
pull_request:
branches: [ main, 4.x.x, 5.x.x ]
branches: [ main, 4.x.x ]

jobs:
build:
Expand All @@ -17,17 +17,17 @@ jobs:
strategy:
matrix:
node-version:
- 16 # to be removed 2023-09-11
- 18 # to be removed 2025-04-30
- 19 # to be removed 2023-06-01
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
- 18 # to be removed 2025-04-30
- 20 # to be removed 2026-04-30
- latest
# See supported Node.js release schedule at https://github.com/nodejs/release#release-schedule

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build --if-present
- run: npm test
- run: npm run test-node
Loading