feat: Add CalendlyWidget on the RequireScreeningModal #1600
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: Verify against productive GraphQL | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
verify-against-prod: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js 18 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'npm' | |
- name: Install Dependencies | |
run: npm ci | |
- name: Typecheck App against productive GraphQL | |
env: | |
CI: false | |
GRAPHQL_SCHEMA_URL: https://api.lern-fair.de/apollo | |
run: npm run graphql-fetch-schema && npm run graphql-build && npm run check-types |