-
Notifications
You must be signed in to change notification settings - Fork 821
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge back into a single lerna monorepo (#2892)
* chore: use a single lerna monorepo * chore: release API dependencies * chore: fix selenium exporter * chore: support old API versions * chore: update changelog * chore: remove peer api check * chore: changelog * chore: fix cache keys and paths * chore: fix lint cache * ci: install when cache misses * chore: apply cache fix to webworker and web * chore: apply cache fix to lint * chore: revert peer api check removal * chore: match peer and dev dependency versions for API * chore: send full string to lerna exec * chore: use npm script for peer api check * chore: use MetricAttributes in metrics * chore: use MetricAttributes when appropriate Co-authored-by: Valentin Marchaud <[email protected]>
- Loading branch information
Showing
106 changed files
with
523 additions
and
477 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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Ensure API Peer Dependency | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
|
||
jobs: | ||
peer-api-check: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: node:14 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install lerna | ||
run: npm install -g lerna | ||
|
||
- name: Install semver | ||
run: npm install semver | ||
|
||
- name: Check API dependency semantics | ||
working-directory: packages | ||
run: lerna run peer-api-check |
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
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
Oops, something went wrong.