Create text_encoders folder when creating models dir (#988) #975
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: End-to-End Test - Windows | |
on: | |
pull_request: | |
branches: [main] | |
paths-ignore: | |
- '.prettierrc' | |
- '.eslintrc.json' | |
- '.prettierignore' | |
- 'README.md' | |
- '.husky/**' | |
- '.vscode/**' | |
- 'scripts/**' | |
- '.gitignore' | |
- 'todesktop.json' | |
- '.github/ISSUE_TEMPLATE/**' | |
- '.cursor/**' | |
- '*_example' | |
- 'tests/unit/**' | |
push: | |
branches: [main] | |
paths-ignore: | |
- '.prettierrc' | |
- '.eslintrc.json' | |
- '.prettierignore' | |
- 'README.md' | |
- '.husky/**' | |
- '.vscode/**' | |
- 'scripts/**' | |
- '.gitignore' | |
- 'todesktop.json' | |
- '.github/ISSUE_TEMPLATE/**' | |
- '.cursor/**' | |
- '*_example' | |
- 'tests/unit/**' | |
jobs: | |
integration-windows-test: | |
runs-on: windows-latest | |
env: | |
SKIP_HARDWARE_VALIDATION: 'true' | |
LOG_LEVEL: 'debug' | |
steps: | |
- name: Github checkout | |
uses: actions/checkout@v4 | |
- name: Build | |
uses: ./.github/actions/build/windows/app | |
with: | |
sign-and-publish: false | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Set display resolution | |
run: Set-DisplayResolution -Width 1920 -Height 1080 -Force | |
- name: Run Playwright Tests | |
run: npm run test:e2e | |
- name: Upload Test Results | |
uses: actions/upload-artifact@v4 | |
if: ${{ !cancelled() }} | |
with: | |
name: test-results | |
path: test-results/ | |
retention-days: 30 |