chore(deps): bump pnpm/action-setup from 6.0.8 to 6.0.9 #8656
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: Argos CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| types: | |
| # Those 3 are the default PR workflow activity types, | |
| # see https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request | |
| - opened | |
| - synchronize | |
| - reopened | |
| # We want trigger workflow on labeled too! | |
| - labeled | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| take-screenshots: | |
| # Argos is heavy to run | |
| # We only want to trigger Argos on PRs with the 'Argos' label | |
| # See https://stackoverflow.com/questions/62325286/run-github-actions-when-pull-requests-have-a-specific-label | |
| if: | | |
| github.repository == 'facebook/docusaurus' && | |
| ( | |
| (github.event_name != 'pull_request' && github.ref_name == 'main') || | |
| (github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'Argos')) | |
| ) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository code | |
| uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9 | |
| - name: Use Node.js | |
| uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 | |
| with: | |
| node-version: lts/* | |
| cache: pnpm | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile || pnpm install --frozen-lockfile || pnpm install --frozen-lockfile | |
| - name: Install Playwright browsers | |
| run: pnpm playwright install --with-deps chromium | |
| - name: Build website fast | |
| run: pnpm argos:build | |
| - name: Take Argos screenshots | |
| run: pnpm argos:screenshot |