-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace Makefile with turborepo (#1194)
- Loading branch information
Showing
77 changed files
with
954 additions
and
810 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,38 @@ | ||
--- | ||
name: Bug report | ||
about: Let us know about a bug | ||
title: '' | ||
title: "" | ||
labels: bug | ||
assignees: '' | ||
|
||
assignees: "" | ||
--- | ||
|
||
**Describe the bug** | ||
|
||
As clearly as you can, please tell us what the bug is. | ||
|
||
|
||
**To Reproduce** | ||
|
||
If you encountered an error message, please copy and paste it verbatim. | ||
If the bug is specific to an RPC or payload, please provide a reduced | ||
example. | ||
|
||
|
||
**Environment (please complete the following information):** | ||
|
||
- @connectrpc/connect-web version: (for example, `0.1.0`) | ||
- @connectrpc/connect-node version: (for example, `0.1.0`) | ||
- Frontend framework and version: (for example, `[email protected]`) | ||
- Node.js version: (for example, `18.0.0`) | ||
- Browser and version: (for example, `Google Chrome 103.0.5060.134`) | ||
|
||
If your problem is specific to bundling, please also provide the following information: | ||
If your problem is specific to bundling, please also provide the following information: | ||
|
||
- Bundler and version: (for example, `[email protected]`) | ||
- Bundler plugins and version: (for example `[email protected]`) | ||
- Bundler configuration file: | ||
- Bundler configuration file: | ||
|
||
```js | ||
|
||
``` | ||
|
||
|
||
**Additional context** | ||
Add any other context about the problem here. |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,39 @@ | ||
name: browserstack | ||
name: "Browserstack" | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
tags: ['v*'] | ||
branches: [main, "v*"] | ||
tags: ["v*"] | ||
pull_request: | ||
branches: [main] | ||
branches: [main, "v*"] | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: read | ||
|
||
env: | ||
# https://consoledonottrack.com/ | ||
DO_NOT_TRACK: 1 | ||
|
||
jobs: | ||
browserstack: | ||
name: "Test @connectrpc/connect-web" | ||
runs-on: ubuntu-22.04 | ||
timeout-minutes: 10 | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v4 | ||
- name: cache | ||
uses: actions/cache@v4 | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: .nvmrc | ||
- uses: actions/cache@v4 | ||
with: | ||
path: | | ||
~/.tmp | ||
.tmp | ||
key: ${{ runner.os }}-connect-web-browserstack-${{ hashFiles('Makefile') }} | ||
restore-keys: | | ||
${{ runner.os }}-connect-web-browserstack- | ||
- name: browserstack | ||
path: .turbo | ||
key: ${{ runner.os }}/browserstack/${{ github.sha }} | ||
restore-keys: ${{ runner.os }}/browserstack | ||
- name: NPM Install | ||
run: npm ci | ||
- name: Browserstack | ||
env: | ||
BROWSERSTACK_USERNAME: ${{ secrets.BROWSERSTACK_USERNAME }} | ||
BROWSERSTACK_ACCESS_KEY: ${{ secrets.BROWSERSTACK_ACCESS_KEY }} | ||
run: make testwebbrowserstack | ||
|
||
run: npx turbo run test-browserstack --output-logs new-only --log-order stream |
Oops, something went wrong.