fix(auth): remove trailing slash from audience check to match Auth0 t… #1825
This file contains hidden or 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: Lighthouse | |
| on: [push] | |
| jobs: | |
| lhci: | |
| name: Lighthouse | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Setup Node.js environment | |
| uses: actions/setup-node@v2.5.0 | |
| with: | |
| node-version: '20' | |
| - name: 'Checkout Project' | |
| uses: 'actions/checkout@v4' | |
| with: | |
| fetch-depth: 1 | |
| - name: Install dependencies | |
| run: yarn install --no-progress | |
| - name: Build OpenBeta project | |
| run: yarn build | |
| - run: npm install -g @lhci/cli@0.12.x | |
| - name: Run Lighthouse CI | |
| run: lhci autorun | |
| env: | |
| LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }} |