Skip to content

Commit

Permalink
Update developer dependencies (#1560)
Browse files Browse the repository at this point in the history
* update developer depenedencies

* update CI tasks

* update action versions

* dont run browsers tests in node tests

* actually run npm script
  • Loading branch information
koddsson committed Dec 28, 2023
1 parent 75a7bab commit c245af1
Show file tree
Hide file tree
Showing 4 changed files with 1,845 additions and 1,451 deletions.
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

0 comments on commit c245af1

Please sign in to comment.