Skip to content

Commit

Permalink
added ci with github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
deftio committed Aug 6, 2024
1 parent 22b36d3 commit 653651f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:

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

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

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[![License](https://img.shields.io/badge/License-BSD%202--Clause-blue.svg)](https://opensource.org/licenses/BSD-2-Clause)
[![NPM version](https://img.shields.io/npm/v/quikchat.svg?style=flat-square)](https://www.npmjs.com/package/quikchat)
![CI](https://github.com/deftio/quikchat/actions/workflows/ci.yml/badge.svg)

# QuikChat (js)

Expand Down
1 change: 1 addition & 0 deletions dev/todo.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
* clean up scroll to bottom behavior (in progress)
* add stats api (num messages, users, total chars written etc)
* add user mgmt
* add callbacks : onMessageAppend, onMessageReplace

==========

Expand Down
3 changes: 2 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@
<script>hljs.highlightAll();</script>
</head>
<body class="bw-def-page-setup bw-font-sans-serif dbat" ><br><br><p><a href="https://opensource.org/licenses/BSD-2-Clause"><img src="https://img.shields.io/badge/License-BSD%202--Clause-blue.svg" alt="License"></a>
<a href="https://www.npmjs.com/package/quikchat"><img src="https://img.shields.io/npm/v/quikchat.svg?style=flat-square" alt="NPM version"></a></p>
<a href="https://www.npmjs.com/package/quikchat"><img src="https://img.shields.io/npm/v/quikchat.svg?style=flat-square" alt="NPM version"></a>
<img src="https://github.com/deftio/quikchat/actions/workflows/ci.yml/badge.svg" alt="CI"></p>
<h1 id="quikchat-js">QuikChat (js)</h1>
<p>Quikchat is a vanilla (no dependancies) JavaScript chat control that can be easily integrated into web applications. It provides a customizable chat interface with support for hiding and showing a title area and the input area.</p>
<h2 id="features">Features</h2>
Expand Down

0 comments on commit 653651f

Please sign in to comment.