Hello,
Run pnpm create playwright and choose to enable CI, the boilerplate doesn't have step to install pnpm.

It should looks like this:
...
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install pnpm // new
run: npm install -g pnpm // new
- name: Install dependencies
run: pnpm install
....
I think yarn has same issue since they use same boilerplate in this repo.
Hello,
Run
pnpm create playwrightand choose to enable CI, the boilerplate doesn't have step to installpnpm.It should looks like this:
... steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: node-version: 18 - name: Install pnpm // new run: npm install -g pnpm // new - name: Install dependencies run: pnpm install ....I think yarn has same issue since they use same boilerplate in this repo.