Skip to content

Commit

Permalink
chore(ci)!: drop support for node v16, adding node v22
Browse files Browse the repository at this point in the history
  • Loading branch information
ssut committed Jul 12, 2024
1 parent 956d052 commit c916925
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:
strategy:
matrix:
node-version:
- 16.x
- 18.x
- 20.x
- 22.x

services:
elasticmq:
Expand All @@ -20,7 +20,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: ElasticMQ Configuration
run: |
Expand All @@ -29,9 +29,9 @@ jobs:
docker restart elasticmq
- name: Setup pnpm
uses: pnpm/action-setup@v2
uses: pnpm/action-setup@v4

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
name: Use Node.js ${{ matrix.node-version }}
with:
node-version: ${{ matrix.node-version }}
Expand All @@ -41,7 +41,7 @@ jobs:
run: pnpm install

- name: Check lint
run: pnpm run lint
run: pnpm biome ci

- name: Run Tests
run: pnpm run test:e2e
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "@ssut/nestjs-sqs",
"version": "2.2.0",
"version": "3.0.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=16.0.0"
"node": ">=18.0.0"
},
"scripts": {
"test:e2e": "jest --config=jest-e2e.config.js --detectOpenHandles --runInBand --forceExit",
Expand Down

0 comments on commit c916925

Please sign in to comment.