feat: support acrValues (#105) #125
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: push | |
name: Build and Run Tests | |
jobs: | |
buildAndRun: | |
name: Build and Run Tests | |
runs-on: ubuntu-latest | |
env: | |
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: 'true' | |
CHROME_BIN: 'google-chrome-unstable' | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '12.x' | |
- run: yarn install | |
name: Install Packages using Yarn | |
- run: yarn build angular-simple-oidc | |
name: Build angular-simple-oidc | |
- name: Test angular-simple-oidc | |
uses: ianwalter/[email protected] | |
with: | |
entrypoint: yarn | |
args: test-lib-ci | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '12.x' | |
- run: yarn build angular-simple-oidc --prod | |
- run: yarn build --prod |