Skip to content

chore(deps): bump word-wrap from 1.2.3 to 1.2.4 in /packages/cloud-auth-client/examples/cloud-auth-client-react-example #151

chore(deps): bump word-wrap from 1.2.3 to 1.2.4 in /packages/cloud-auth-client/examples/cloud-auth-client-react-example

chore(deps): bump word-wrap from 1.2.3 to 1.2.4 in /packages/cloud-auth-client/examples/cloud-auth-client-react-example #151

Workflow file for this run

# This workflow will do a clean install of node dependencies, 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 and Run Tests
on:
push:
branches: [ master, develop ]
pull_request:
branches: [ master, develop ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --frozen-lockfile
- run: yarn lint
- run: yarn build
test-code-coverage:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --frozen-lockfile
- run: yarn cover
- uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./packages/cloud-auth-client/coverage/lcov.info
flags: unittests
name: codecov-cloud-auth-client
- uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./packages/cloud-auth-common/coverage/lcov.info
flags: unittests
name: codecov-cloud-auth-common
- uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./packages/cloud-auth-node/coverage/lcov.info
flags: unittests
name: codecov-cloud-auth-node
third-party-licenses:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --frozen-lockfile
- run: yarn third-party-licenses
env:
CI: true