docs: add FAQ entry about the 32 MB request size limit #192
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
| # This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node | |
| # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs | |
| name: Test | |
| on: | |
| pull_request: | |
| branches: ["main", "test"] | |
| push: | |
| branches: ["test"] | |
| env: | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true | |
| #FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }} | |
| NEXT_PUBLIC_FIREBASE_CONFIG: ${{ secrets.FIREBASE_TEST_CONFIG }} | |
| NEXT_PUBLIC_CLIENT_ID: ${{ secrets.TEST_CLIENT_ID }} | |
| NEXT_PUBLIC_REDIRECT_URI: "https://datapipe-test.web.app/oauth2/callback" | |
| NEXT_PUBLIC_OAUTH_CALLBACK: "https://datapipe-test.web.app/api/oauth2callback" | |
| NEXT_PUBLIC_OAUTH_FINAL: "/admin" | |
| NEXT_PUBLIC_OAUTH_REGENERATE: "https://datapipe-test.web.app/api/oauth2regenerate" | |
| NEXT_PUBLIC_OSF_ENV: "" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [22.x] | |
| # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: "npm" | |
| - name: Set up Java 21 for Firebase emulators | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '21' | |
| - uses: 'google-github-actions/auth@v3' | |
| with: | |
| credentials_json: '${{ secrets.GOOGLE_TEST_CREDENTIALS }}' # Replace with the name of your GitHub Actions secret | |
| - name: Install firebase tools | |
| run: npm install -g firebase-tools@15.8.0 | |
| - name: Enable firebase webframeworks | |
| run: firebase experiments:enable webframeworks | |
| - run: npm ci | |
| - name: Install dependencies and build metadata | |
| working-directory: functions/metadata | |
| run: | | |
| npm ci | |
| npm run build | |
| - name: Install dependencies and build functions | |
| working-directory: functions | |
| run: | | |
| npm ci | |
| npm run build | |
| - name: Select project | |
| run: firebase use test | |
| - name: Launch firestore emulator and test | |
| run: firebase emulators:exec 'npm run test-ci' |