feat: oidc proxy, handle authRequest, callback #147
Workflow file for this run
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
name: Quality | |
on: pull_request | |
jobs: | |
quality: | |
name: Ensure Quality | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
permissions: | |
contents: "read" | |
strategy: | |
fail-fast: false | |
matrix: | |
command: | |
- lint | |
- test:unit | |
- test:integration | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
- name: Setup pnpm 7 | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 7 | |
- name: Setup Node.js 18.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
- uses: pnpm/action-setup@v2 | |
name: Install pnpm | |
id: pnpm-install | |
with: | |
version: 7 | |
run_install: false | |
- name: Get pnpm store directory | |
id: pnpm-cache | |
shell: bash | |
run: | | |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT | |
- uses: actions/cache@v3 | |
name: Setup pnpm cache | |
with: | |
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} | |
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm-store- | |
- uses: actions/cache@v3 | |
name: Setup Cypress binary cache | |
with: | |
path: ~/.cache/Cypress | |
key: ${{ runner.os }}-cypress-binary-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-cypress-binary- | |
if: ${{ matrix.command }} == "test:integration" | |
- name: Install Dependencies | |
id: deps | |
run: pnpm install | |
- name: Check | |
id: check | |
run: pnpm ${{ matrix.command }} |