diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 0000000..a86eeea --- /dev/null +++ b/.github/workflows/ci.yaml @@ -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 \ No newline at end of file diff --git a/README.md b/README.md index 810b373..b9fbb75 100644 --- a/README.md +++ b/README.md @@ -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.