Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
branches: [main, changeset-release/main]
pull_request:
branches: [main]
merge_group:

jobs:
typecheck:
Expand Down Expand Up @@ -42,7 +43,21 @@
- run: bun run build
- run: bun run --filter e2e-tests test:protocol

e2e-browser:
name: E2E tests (browser)
runs-on: ubuntu-latest
if: github.event_name == 'merge_group'
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- run: bun install
- run: bun run build
- run: npx --prefix packages/e2e-tests playwright install --with-deps chromium
- run: bun run --filter e2e-tests test:browser

cli-smoke:

Check warning

Code scanning / CodeQL

Workflow does not contain permissions Medium

Actions job or workflow does not limit the permissions of the GITHUB_TOKEN. Consider setting an explicit permissions block, using the following as a minimal starting point: {contents: read}
name: CLI smoke test
runs-on: ubuntu-latest
steps:
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,6 @@ jobs:
- name: E2E tests (protocol)
run: bun run --filter e2e-tests test:protocol

- name: Install Playwright
run: npx --prefix packages/e2e-tests playwright install --with-deps chromium

- name: E2E tests (browser)
run: bun run --filter e2e-tests test:browser

- name: Create release PR or publish
id: changesets
uses: changesets/action@v1
Expand Down
Loading