We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f73d7e6 commit 1466b43Copy full SHA for 1466b43
1 file changed
.github/workflows/test.yml
@@ -37,6 +37,13 @@ jobs:
37
with:
38
token: ${{ secrets.GITHUB_TOKEN }}
39
40
+ - name: Setup Bun
41
+ uses: ./.github/actions/setup-bun
42
+
43
+ - name: Install Playwright browsers
44
+ working-directory: packages/app
45
+ run: ${{ matrix.settings.playwright }}
46
47
- name: Set OS-specific paths
48
run: |
49
if [ "${{ runner.os }}" = "Windows" ]; then
@@ -57,13 +64,6 @@ jobs:
57
64
printf '%s\n' "MODELS_DEV_API_JSON=${{ github.workspace }}/packages/opencode/test/tool/fixtures/models-api.json" >> "$GITHUB_ENV"
58
65
fi
59
66
60
- - name: Setup Bun
61
- uses: ./.github/actions/setup-bun
62
-
63
- - name: Install Playwright browsers
- working-directory: packages/app
- run: ${{ matrix.settings.playwright }}
67
- name: Seed opencode data
68
working-directory: packages/opencode
69
run: bun script/seed-e2e.ts
0 commit comments