Skip to content

fix(webapp-strategy.js):Logout compatibility with passport >= 0.6.0 #255

fix(webapp-strategy.js):Logout compatibility with passport >= 0.6.0

fix(webapp-strategy.js):Logout compatibility with passport >= 0.6.0 #255

Workflow file for this run

# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node
name: Quality CI
on:
push:
branches: [ development, master ]
pull_request:
branches: [ development, master ]
jobs:
quality:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 12
- run: npm install
- run: npm install -g codecov
- run: npm run coverage
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}