Update ci.yaml to use pnpm instead of pnpx for Vercel commands
All checks were successful
CI / build-and-deploy (push) Successful in 4m33s

This commit is contained in:
严浩
2024-09-26 17:56:57 +08:00
parent 3db8a15c97
commit e50a16a583
4 changed files with 26 additions and 39 deletions

7
tests/e2e/test-1.spec.ts Normal file
View File

@ -0,0 +1,7 @@
import { test, expect } from '@playwright/test';
test('test', async ({ page }) => {
await page.goto('/');
console.log(page.url());
await expect(page.getByRole('link', { name: '中文-页面.page.vue' })).toBeVisible();
});