Skip to content
Merged

V2 #24

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
28 changes: 28 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Build

on:
push:
pull_request:

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [lts/*]

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

- name: Install dependencies
run: npm install

- name: Run tests
run: npm test
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.gitignore
.github
.travis.yml
.dockerignore
.ssh/
Expand Down
13 changes: 0 additions & 13 deletions .travis.yml

This file was deleted.

598 changes: 585 additions & 13 deletions LICENSE

Large diffs are not rendered by default.

11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
</a>
</h1>
<div align="center">
<a href="https://travis-ci.com/imqueue/pg-pubsub">
<img src="https://travis-ci.com/imqueue/pg-pubsub.svg?branch=master" alt="Build Status">
<a href="https://github.com/imqueue/pg-pubsub">
<img src="https://img.shields.io/github/actions/workflow/status/imqueue/pg-pubsub/build.yml" alt="Build Status">
</a>
<a href="https://codebeat.co/projects/github-com-imqueue-pg-pubsub-master">
<img src="https://codebeat.co/badges/579f6d7c-df61-4bc2-aa2e-d4fa9a3abf5a" alt="Codebeat Grade">
Expand All @@ -20,8 +20,8 @@
<a href="https://coveralls.io/github/imqueue/pg-pubsub?branch=master">
<img src="https://coveralls.io/repos/github/imqueue/pg-pubsub/badge.svg?branch=master" alt="Coverage Status">
</a>
<a href="https://rawgit.com/imqueue/core/master/LICENSE">
<img src="https://img.shields.io/badge/license-ISC-blue.svg" alt="Coverage Status">
<a href="https://rawgit.com/imqueue/pg-pubsub/master/LICENSE">
<img src="https://img.shields.io/badge/license-GPL-blue.svg" alt="Coverage Status">
</a>
</div>
<hr>
Expand Down Expand Up @@ -328,6 +328,7 @@ accepted!

## License

[ISC](https://github.com/imqueue/pg-pubsub/blob/master/LICENSE)
This project is licensed under the GNU General Public License v3.0.
See the [LICENSE](LICENSE)

Happy Coding!
28 changes: 18 additions & 10 deletions index.ts
Original file line number Diff line number Diff line change
@@ -1,16 +1,24 @@
/*!
* Copyright (c) 2018, imqueue.com <support@imqueue.com>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
* I'm Queue Software Project
* Copyright (C) 2025 imqueue.com <support@imqueue.com>
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
* REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
* INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
* LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
* OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
* PERFORMANCE OF THIS SOFTWARE.
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* If you want to use this code in a closed source (commercial) project, you can
* purchase a proprietary commercial license. Please contact us at
* <support@imqueue.com> to get commercial licensing options.
*/
export * from './src';
Loading