diff options
| author | Adam <[email protected]> | 2026-01-20 11:04:43 -0600 |
|---|---|---|
| committer | Adam <[email protected]> | 2026-01-20 14:02:09 -0600 |
| commit | 1466b43c5c09f81607e616b24f567d472111afe7 (patch) | |
| tree | ad3c9f22f8fb5cb3d6dc8f8d961a188458ba6b22 /.github/workflows | |
| parent | f73d7e67d3e625ecf1479c283cbb95e3b9cda428 (diff) | |
| download | opencode-1466b43c5c09f81607e616b24f567d472111afe7.tar.gz opencode-1466b43c5c09f81607e616b24f567d472111afe7.zip | |
test(app): windows fixes
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/test.yml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 264287afe..7c8c20a62 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -37,6 +37,13 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} + - name: Setup Bun + uses: ./.github/actions/setup-bun + + - name: Install Playwright browsers + working-directory: packages/app + run: ${{ matrix.settings.playwright }} + - name: Set OS-specific paths run: | if [ "${{ runner.os }}" = "Windows" ]; then @@ -57,13 +64,6 @@ jobs: printf '%s\n' "MODELS_DEV_API_JSON=${{ github.workspace }}/packages/opencode/test/tool/fixtures/models-api.json" >> "$GITHUB_ENV" fi - - name: Setup Bun - uses: ./.github/actions/setup-bun - - - name: Install Playwright browsers - working-directory: packages/app - run: ${{ matrix.settings.playwright }} - - name: Seed opencode data working-directory: packages/opencode run: bun script/seed-e2e.ts |
