[READ-ONLY] a fast, modern browser for the npm registry
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

test: run playwright tests with `chromium-headless-shell` (#815)

authored by

Wojciech Maj and committed by
GitHub
6addf470 3c9ab66d

+4 -4
+2 -2
.github/workflows/autofix.yml
··· 31 31 - name: ๐Ÿ“ฆ Install dependencies 32 32 run: pnpm install 33 33 34 - - name: ๐Ÿ“ฆ Install browsers 35 - run: pnpm playwright install 34 + - name: ๐ŸŒ Install browser 35 + run: pnpm playwright install chromium-headless-shell 36 36 37 37 - name: ๐ŸŒ Compare translations 38 38 run: pnpm i18n:check
+1 -1
.github/workflows/ci.yml
··· 56 56 run: pnpm install 57 57 58 58 - name: ๐ŸŒ Install browser 59 - run: pnpm playwright install 59 + run: pnpm playwright install chromium-headless-shell 60 60 61 61 - name: ๐Ÿ’ช Type check 62 62 run: pnpm test:types
+1 -1
playwright.config.ts
··· 28 28 }, 29 29 projects: [ 30 30 { 31 - name: 'chromium', 31 + name: 'chromium-headless-shell', 32 32 use: { ...devices['Desktop Chrome'] }, 33 33 }, 34 34 ],