Merge branch 'main' into test/e2e-hydration

This commit is contained in:
Tony Sullivan 2022-05-15 15:52:35 -06:00
commit 23a93bd840
2 changed files with 3 additions and 3 deletions

View file

@ -190,7 +190,7 @@ jobs:
run: ./.github/extract-artifacts.sh
- name: Install dependencies
run: pnpm install && pnpx playwright install
run: pnpm install
- name: Test
run: pnpm run test:e2e

View file

@ -18,8 +18,8 @@
"test:templates": "turbo run test --filter=create-astro --concurrency=1",
"test:smoke": "node scripts/smoke/index.js",
"test:vite-ci": "turbo run test --no-deps --scope=astro --concurrency=1",
"test:e2e": "cd packages/astro && pnpm run test:e2e",
"test:e2e:match": "cd packages/astro && pnpm run test:e2e:match",
"test:e2e": "cd packages/astro && pnpm playwright install && pnpm run test:e2e",
"test:e2e:match": "cd packages/astro && pnpm playwright install && pnpm run test:e2e:match",
"benchmark": "turbo run benchmark --scope=astro",
"lint": "eslint \"packages/**/*.ts\"",
"format": "prettier -w .",