Skip to content

Commit

Permalink
Merge pull request #31 from Amri91/chores
Browse files Browse the repository at this point in the history
Chores
  • Loading branch information
Amri91 committed Feb 8, 2022
2 parents cbb3e54 + 31d175b commit 56de6e1
Show file tree
Hide file tree
Showing 5 changed files with 53 additions and 43 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions

name: Node.js CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [10.x, 12.x, 14.x, 16.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

services:
redis:
image: redis
ports:
- 6379:6379

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm i
- run: npm test
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
10 changes: 0 additions & 10 deletions .travis.yml

This file was deleted.

21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
# authomatic-redis
[![Build Status](https://travis-ci.org/wearereasonablepeople/authomatic-redis.svg?branch=master)](https://travis-ci.org/wearereasonablepeople/authomatic-redis)
[![Coverage Status](https://coveralls.io/repos/github/wearereasonablepeople/authomatic-redis/badge.svg?branch=master)](https://coveralls.io/github/wearereasonablepeople/authomatic-redis?branch=master)
[![Maintainability](https://api.codeclimate.com/v1/badges/de17d1c089d4120b8a1f/maintainability)](https://codeclimate.com/github/wearereasonablepeople/authomatic-redis/maintainability)
[![Greenkeeper badge](https://badges.greenkeeper.io/wearereasonablepeople/authomatic-redis.svg)](https://greenkeeper.io/)
[![Build Status](https://app.travis-ci.com/Amri91/authomatic-redis.svg?branch=master)](https://app.travis-ci.com/Amri91/authomatic-redis)
[![Coverage Status](https://coveralls.io/repos/github/Amri91/authomatic-redis/badge.svg?branch=master)](https://coveralls.io/github/Amri91/authomatic-redis?branch=master)

Redis store for [Authomatic](https://github.com/wearereasonablepeople/authomatic)
Redis store for [Authomatic](https://github.com/Amri91/authomatic)

## install
```
Expand Down
18 changes: 11 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "authomatic-redis",
"version": "1.0.0",
"version": "1.0.1",
"description": "A redis store for Authomatic",
"main": "index.js",
"scripts": {
Expand All @@ -11,18 +11,22 @@
"test:coverage": "jest tests --coverage",
"test:lint": "eslint tests index.js"
},
"engines": {
"node": ">=10.x"
},
"author": "Abdulrahman Amri",
"license": "MIT",
"dependencies": {
"redis": "^2.8.0",
"redis": "^3.1.1",
"redisscan": "^2.0.0",
"tcomb": "^3.2.24"
"tcomb": "^3.2.29"
},
"devDependencies": {
"coveralls": "^3.0.1",
"eslint-config-warp": "^3.0.0",
"eslint": "^6.0.0",
"jest": "^23.1.0"
"coveralls": "^3.1.1",
"eslint": "^7.12.1",
"eslint-config-warp": "^6.1.0",
"eslint-plugin-node": "^11.1.0",
"jest": "^27.5.0"
},
"keywords": [
"authomatic",
Expand Down

0 comments on commit 56de6e1

Please sign in to comment.