Skip to content

Commit

Permalink
Adds CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
ericlamb committed Jul 18, 2023
1 parent 7688bb2 commit 2aff84f
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: CI

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: '16'
- name: Install, Build, and Test
run: npm install --force
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# redux-oidc
[![CI](https://github.com/ericlamb/redux-oidc/actions/workflows/ci.yaml/badge.svg)](https://github.com/ericlamb/redux-oidc/actions/workflows/ci.yaml)

Forked from [maxmantz/redux-oidc](https://github.com/maxmantz/redux-oidc).

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

0 comments on commit 2aff84f

Please sign in to comment.