Skip to content

Commit

Permalink
feat: add support for Express v5 (#691) (#692)
Browse files Browse the repository at this point in the history
* feat: upgrade to the [email protected] (#691)

* upgraded to the [email protected],
* adjusted the ServerlessRequest to the [email protected] implementation,
* ran: npm audit and npm audit fix,

* feat: upgrade to the [email protected] (#691)

* removed unnecessary workflows for the node.js 14 and 16,
* updated the Node.js engine version to >= 18

---------

Co-authored-by: pantyporowicz <[email protected]>
  • Loading branch information
pnkp and pantyporowicz-squiz authored Oct 24, 2024
1 parent f05b3ab commit d20e3f0
Show file tree
Hide file tree
Showing 6 changed files with 1,562 additions and 1,237 deletions.
9 changes: 1 addition & 8 deletions .github/workflows/release-on-push-to-mainline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 20.x]
node-version: [18.x, 20.x, 22.x]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -20,14 +20,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}

# 14.x fails with "npm ERR! Cannot read property '@commitlint/config-conventional' of undefined"
# when running `npm ci` due to the new package-lock.json format. Run `npm i` instead
- name: Install (14.x)
if: matrix.node-version == '14.x'
run: npm i

- name: Install
if: matrix.node-version != '14.x'
run: npm ci

- name: Test
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ examples/nextjs
typescript-out
.build
.serverless
.idea
Loading

0 comments on commit d20e3f0

Please sign in to comment.