Fix: updated uauthOptions in docs demo #2090
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: PR Status Checks | |
on: | |
# Allows it to be manually triggered, used primarily for debugging | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- develop | |
jobs: | |
checks: | |
name: "Checks" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup Nodejs and yarn | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "18.19.1" | |
cache: yarn | |
- name: Install dependencies | |
run: yarn | |
- name: Check that it builds | |
run: yarn build | |
- name: Check formatting and types | |
run: yarn type-check | |
- name: Check that versions of the package dependencies match those in yarn’s lock file | |
run: yarn file-check |