transpile

This commit is contained in:
Osvaldo Ortega
2026-03-10 16:36:06 -07:00
parent 01c89399b5
commit 68a4e6dd69
2 changed files with 4 additions and 6 deletions

View File

@@ -36,12 +36,8 @@ jobs:
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Install build dependencies
run: npm ci
working-directory: build
- name: Compile
run: npm run compile
- name: Transpile sources
run: npm run transpile-client
- name: Install E2E test dependencies
run: npm ci

View File

@@ -213,6 +213,8 @@ async function main() {
console.log('Server ready.\n');
// Open browser
// --headed if you want to run the test locally and verify the UI interactions
// const openResult = runPlaywrightCli(['open', '--headed']);
const openResult = runPlaywrightCli(['open', '--headed']);
if (!openResult.ok) {
console.error('Failed to open browser:', openResult.stdout, openResult.stderr);