Single sign-on #11080
Workflow file for this run
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: Test | |
| on: | |
| pull_request: | |
| branches: | |
| - '*' | |
| concurrency: | |
| group: '${{ github.workflow }}-${{ github.head_ref || github.ref }}' | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| # https://github.com/actions/setup-node/issues/531#issuecomment-2960522861 | |
| - name: Install Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: '.nvmrc' | |
| - name: Enable Corepack | |
| run: corepack enable | |
| - name: Configure Dependency Cache | |
| uses: actions/setup-node@v4 | |
| with: | |
| cache: 'pnpm' | |
| - name: Get current month | |
| run: echo "CURRENT_MONTH=$(date +'%Y-%m')" >> $GITHUB_ENV | |
| - uses: actions/cache@v4 | |
| name: Cache Puppeteer browser binaries | |
| with: | |
| path: ~/.cache | |
| key: ${{ env.CURRENT_MONTH }}-${{ runner.os }} | |
| - run: pnpm i --frozen-lockfile | |
| - run: pnpm build | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: dist | |
| path: | | |
| packages/*/dist | |
| packages/*/*/dist | |
| packages/oauth/*/src/locales/*/messages.ts | |
| retention-days: 1 | |
| test: | |
| name: Test | |
| needs: build | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| shard: [1/8, 2/8, 3/8, 4/8, 5/8, 6/8, 7/8, 8/8] | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| # https://github.com/actions/setup-node/issues/531#issuecomment-2960522861 | |
| - name: Install Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: '.nvmrc' | |
| - name: Enable Corepack | |
| run: corepack enable | |
| - name: Configure Dependency Cache | |
| uses: actions/setup-node@v4 | |
| with: | |
| cache: 'pnpm' | |
| - name: Get current month | |
| run: echo "CURRENT_MONTH=$(date +'%Y-%m')" >> $GITHUB_ENV | |
| - uses: actions/cache@v4 | |
| name: Cache Puppeteer browser binaries | |
| with: | |
| path: ~/.cache | |
| key: ${{ env.CURRENT_MONTH }}-${{ runner.os }} | |
| - run: pnpm i --frozen-lockfile | |
| - uses: actions/download-artifact@v4 | |
| with: | |
| name: dist | |
| path: packages | |
| - run: pnpm test:withFlags --maxWorkers=1 --shard=${{ matrix.shard }} --passWithNoTests | |
| verify: | |
| name: Verify | |
| needs: build | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| # https://github.com/actions/setup-node/issues/531#issuecomment-2960522861 | |
| - name: Install Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: '.nvmrc' | |
| - name: Enable Corepack | |
| run: corepack enable | |
| - name: Configure Dependency Cache | |
| uses: actions/setup-node@v4 | |
| with: | |
| cache: 'pnpm' | |
| - name: Get current month | |
| run: echo "CURRENT_MONTH=$(date +'%Y-%m')" >> $GITHUB_ENV | |
| - uses: actions/cache@v4 | |
| name: Cache Puppeteer browser binaries | |
| with: | |
| path: ~/.cache | |
| key: ${{ env.CURRENT_MONTH }}-${{ runner.os }} | |
| - run: pnpm i --frozen-lockfile | |
| - uses: actions/download-artifact@v4 | |
| with: | |
| name: dist | |
| path: packages | |
| - run: pnpm verify |