Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
2 changes: 1 addition & 1 deletion .github/workflows/_build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
node-version: [14.x, 16.x, 17.x, 18.x]
node-version: [22.x, 24.x]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 22
cache: 'npm'

- name: Install Dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_pre-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: 18
node-version: 22

- name: Install Dependencies
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/on-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Vulnerabilities check
uses: frontegg/workflows/.github/shared-actions/vulnerabilities-check@master
with:
node_version: '18'
node_version: '22'

call-lint:
uses: ./.github/workflows/_lint.yaml
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
git config --global user.email "${{ github.event.pusher.email }}"
env:
GITHUB_TOKEN: ${{ secrets.GH_ADMIN_REPO_TOKEN }}
- name: Use Node.js 18
- name: Use Node.js 22
Comment thread
raz-shlomo-frontegg marked this conversation as resolved.
uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '22'
cache: 'npm'

- name: Install
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@

* ### As of version 3.0.0 and 4.0.0, we will no longer provide proxy middlewares
* ### As of version 5.0.0, node 12 is no longer supported.
* ### As of version 2.0.17, node 22+ is required.

To see an example implementation, head over to our
<a href="https://github.com/frontegg-samples/nodejs-proxy-sample">sample proxy project</a>
Expand All @@ -38,7 +39,7 @@ To see an example implementation, head over to our
Install the package using [npm](https://www.npmjs.com/)

```bash
# node 14+
# node 22+
npm install @frontegg/client
```

Expand Down
Loading