Skip to content

chore(deps): bump express from 4.17.3 to 4.21.0 in /examples/express-react-relying-party/frontend #148

chore(deps): bump express from 4.17.3 to 4.21.0 in /examples/express-react-relying-party/frontend

chore(deps): bump express from 4.17.3 to 4.21.0 in /examples/express-react-relying-party/frontend #148

# 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: Build (Relying Party)
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '14', '16' ]
name: Node ${{ matrix.node }} sample
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
cache-dependency-path: 'relying-party/**/yarn.lock'
- run: yarn
working-directory: relying-party
- run: yarn test
working-directory: relying-party
coverage:
needs: [ test ]
name: coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
cache-dependency-path: 'relying-party/**/yarn.lock'
- run: yarn
working-directory: relying-party
- uses: paambaati/[email protected]
env:
CC_TEST_REPORTER_ID: ${{ secrets.CodeClimate }}
with:
workingDirectory: relying-party
coverageCommand: yarn test:coverage