Skip to content

Commit 2aff84f

Browse files
committed
Adds CI build
1 parent 7688bb2 commit 2aff84f

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v3
12+
- name: Setup node
13+
uses: actions/setup-node@v3
14+
with:
15+
node-version: '16'
16+
- name: Install, Build, and Test
17+
run: npm install --force

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# redux-oidc
2+
[![CI](https://github.com/ericlamb/redux-oidc/actions/workflows/ci.yaml/badge.svg)](https://github.com/ericlamb/redux-oidc/actions/workflows/ci.yaml)
3+
24
Forked from [maxmantz/redux-oidc](https://github.com/maxmantz/redux-oidc).
35

46
A package for managing OpenID-Connect authentication in ReactJS / Redux apps. It wraps the popular oidc-client library to redux actions and reducers.

0 commit comments

Comments
 (0)