Commit c98f8428 authored by Pierre Smeyers's avatar Pierre Smeyers
Browse files

docs: remove mention to yarn or pnpm

parent 45b5425d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -52,7 +52,7 @@ It uses the following variable:
| `project-dir` / `PLAYWRIGHT_PROJECT_DIR` | The Playwright root project directory (contains the `playwright.config.ts` file)                                            | `.`                                         |
| `extra-args` / `PLAYWRIGHT_EXTRA_ARGS` | Playwright extra [run options](https://playwright.dev/docs/test-cli)                                                        | _none_                                      |
| `review-enabled` / `REVIEW_ENABLED` | Set to `true` to enable Playwright tests on review environments (dynamic environments instantiated on development branches) | _none_ (disabled)                           |
| `node-install-extra-opts` / `NODE_INSTALL_EXTRA_OPTS` | Extra options to install project dependencies (either [`npm ci`](https://docs.npmjs.com/cli/ci.html/), [`yarn install`](https://yarnpkg.com/cli/install) or [`pnpm install`](https://pnpm.io/cli/install)) | _none_ |
| `node-install-extra-opts` / `NODE_INSTALL_EXTRA_OPTS` | Extra [`npm ci`](https://docs.npmjs.com/cli/ci.html/) options to install project dependencies | _none_ |

In addition to a textual report in the console, this job produces the following reports, kept for one day:

+1 −1
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@
    },
    {
      "name": "NODE_INSTALL_EXTRA_OPTS",
      "description": "Extra options to install project dependencies",
      "description": "Extra [`npm ci`](https://docs.npmjs.com/cli/ci.html/) options to install project dependencies",
      "type": "text"
    }
  ]
+2 −2
Original line number Diff line number Diff line
@@ -30,8 +30,8 @@ spec:
      type: boolean
      default: false
    node-install-extra-opts:
      description: Extra options to install project dependencies (either [`npm ci`](https://docs.npmjs.com/cli/ci.html/), [`yarn install`](https://yarnpkg.com/cli/install) or [`pnpm install`](https://pnpm.io/cli/install))
      default: ""
      description: Extra [`npm ci`](https://docs.npmjs.com/cli/ci.html/) options to install project dependencies
      default: ''

---
workflow: