Skip to content

Commit c916925

Browse files
committed
chore(ci)!: drop support for node v16, adding node v22
1 parent 956d052 commit c916925

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/test.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ jobs:
99
strategy:
1010
matrix:
1111
node-version:
12-
- 16.x
1312
- 18.x
1413
- 20.x
14+
- 22.x
1515

1616
services:
1717
elasticmq:
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Checkout code
23-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2424

2525
- name: ElasticMQ Configuration
2626
run: |
@@ -29,9 +29,9 @@ jobs:
2929
docker restart elasticmq
3030
3131
- name: Setup pnpm
32-
uses: pnpm/action-setup@v2
32+
uses: pnpm/action-setup@v4
3333

34-
- uses: actions/setup-node@v3
34+
- uses: actions/setup-node@v4
3535
name: Use Node.js ${{ matrix.node-version }}
3636
with:
3737
node-version: ${{ matrix.node-version }}
@@ -41,7 +41,7 @@ jobs:
4141
run: pnpm install
4242

4343
- name: Check lint
44-
run: pnpm run lint
44+
run: pnpm biome ci
4545

4646
- name: Run Tests
4747
run: pnpm run test:e2e

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "@ssut/nestjs-sqs",
3-
"version": "2.2.0",
3+
"version": "3.0.0",
44
"description": "",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
77
"engines": {
8-
"node": ">=16.0.0"
8+
"node": ">=18.0.0"
99
},
1010
"scripts": {
1111
"test:e2e": "jest --config=jest-e2e.config.js --detectOpenHandles --runInBand --forceExit",

0 commit comments

Comments
 (0)