diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c421088..a32dbc6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,9 +9,9 @@ jobs: strategy: matrix: node-version: - - 16.x - 18.x - 20.x + - 22.x services: elasticmq: @@ -20,7 +20,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: ElasticMQ Configuration run: | @@ -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 }} @@ -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 diff --git a/package.json b/package.json index 639aa1c..2b559d2 100644 --- a/package.json +++ b/package.json @@ -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",