Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
3 changes: 0 additions & 3 deletions .eslintignore

This file was deleted.

90 changes: 0 additions & 90 deletions .eslintrc.js

This file was deleted.

13 changes: 5 additions & 8 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
contents: read
strategy:
matrix:
node-version: [20, 22]
node-version: [20, 22, 24]
os: [ubuntu-latest]
steps:
- name: Check out repo
Expand All @@ -38,21 +38,18 @@ jobs:

- name: publish code coverage to code-climate (duh)
if: ${{ github.event_name == 'push' && matrix.node-version == 20 }} # Push coverage only once inside the matrix.
uses: paambaati/codeclimate-action@v5.0.0
env:
CC_TEST_REPORTER_ID: 12add780a1297306e7d223690db29a4d0f3b3f6ec122d51ff5a0a6f60f7c0afb
uses: qltysh/qlty-action/coverage@v2
with:
debug: true
coverageLocations: |
${{github.workspace}}/.tap/report/lcov.info:lcov
token: ${{secrets.QLTY_COVERAGE_TOKEN}}
files: ${{github.workspace}}/.tap/report/lcov.info

build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [20.x, 22.x]
node-version: [20.x, 22.x, 24.x]

steps:

Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v18
v20
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
[![NPM version](https://img.shields.io/npm/v/@fgiova/sqs-consumer.svg?style=flat)](https://www.npmjs.com/package/@fgiova/sqs-consumer)
![CI workflow](https://github.com/fgiova/sqs-consumer/actions/workflows/node.js.yml/badge.svg)
[![TypeScript](https://img.shields.io/badge/%3C%2F%3E-TypeScript-%230074c1.svg)](http://www.typescriptlang.org/)
[![Maintainability](https://api.codeclimate.com/v1/badges/0c10549e75ef6c798dfd/maintainability)](https://codeclimate.com/github/fgiova/sqs-consumer/maintainability)
[![Test Coverage](https://api.codeclimate.com/v1/badges/0c10549e75ef6c798dfd/test_coverage)](https://codeclimate.com/github/fgiova/mini-sqs-client/test_coverage)
[![Maintainability](https://qlty.sh/gh/fgiova/projects/sqs-consumer/maintainability.svg)](https://qlty.sh/gh/fgiova/projects/sqs-consumer)
[![Code Coverage](https://qlty.sh/gh/fgiova/projects/sqs-consumer/coverage.svg)](https://qlty.sh/gh/fgiova/projects/sqs-consumer)

## Description
This module allows consuming SQS messages using @fgiova/mini-sqs-client thorough the aws-json protocol with "undici" as http agent .<br />
Expand Down Expand Up @@ -88,4 +88,4 @@ SQSConsumer.addHook(hookname: string, func: Function): void
```

## License
Licensed under [MIT](./LICENSE).
Licensed under [MIT](./LICENSE).
3 changes: 3 additions & 0 deletions biome.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json"
}
Loading