Skip to content

Commit f639640

Browse files
authored
Upgrade npm packages, removed unused github actions (#19)
* Upgrade npm packages, removed unused github actions * Fix minor issue with express v5
1 parent 7d4a418 commit f639640

File tree

10 files changed

+2390
-2047
lines changed

10 files changed

+2390
-2047
lines changed

.github/workflows/client-tests.yml renamed to .github/workflows-inactive/client-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
node-version: [22.x]
16+
node-version: [24.x]
1717
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
1818
# Note that this version should stay the same as the version on Heroku!
1919

2020
steps:
21-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v4
2222
- name: Use Node.js ${{ matrix.node-version }}
23-
uses: actions/setup-node@v2
23+
uses: actions/setup-node@v4
2424
with:
2525
node-version: ${{ matrix.node-version }}
2626
cache: "npm"

.github/workflows/cypress-tests.yml renamed to .github/workflows-inactive/cypress-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@v2
21+
uses: actions/checkout@v4
2222
# Install NPM dependencies, cache them correctly
2323
# and run all Cypress tests
2424
- name: Setup server and client

.github/workflows/server-tests.yml renamed to .github/workflows-inactive/server-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
node-version: [22.x]
16+
node-version: [24.x]
1717
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
1818

1919
steps:
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v4
2121
- name: Use Node.js ${{ matrix.node-version }}
22-
uses: actions/setup-node@v2
22+
uses: actions/setup-node@v4
2323
with:
2424
node-version: ${{ matrix.node-version }}
2525
cache: "npm"

.github/workflows/client-code-style-check.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
node-version: [22.x]
16+
node-version: [24.x]
1717
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
1818
# Note: keep this the same as the version on Heroku!
1919

2020
steps:
21-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v4
2222
- name: Use Node.js ${{ matrix.node-version }}
23-
uses: actions/setup-node@v2
23+
uses: actions/setup-node@v4
2424
with:
2525
node-version: ${{ matrix.node-version }}
2626
cache: "npm"

.github/workflows/server-code-style-check.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
node-version: [22.x]
16+
node-version: [24.x]
1717
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
1818
# Note: keep this the same as the version on Heroku!
1919

2020
steps:
21-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v4
2222
- name: Use Node.js ${{ matrix.node-version }}
23-
uses: actions/setup-node@v2
23+
uses: actions/setup-node@v4
2424
with:
2525
node-version: ${{ matrix.node-version }}
2626
cache: "npm"

0 commit comments

Comments
 (0)