-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
275 changed files
with
4,396 additions
and
4,000 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -70,7 +70,7 @@ jobs: | |
echo "Package version: $PACKAGE_VERSION"; | ||
echo "Specified version: $SPECIFIED_VERSION"; | ||
test "$PACKAGE_VERSION" = "$SPECIFIED_VERSION" | ||
test "$PACKAGE_VERSION" = "$SPECIFIED_VERSION" || test "=$PACKAGE_VERSION" = "$SPECIFIED_VERSION" | ||
- name: Ensure manifest and CHANGELOG are properly updated | ||
if: > | ||
|
@@ -82,10 +82,11 @@ jobs: | |
!contains(github.event.pull_request.labels.*.name, 'internal-change') | ||
run: | | ||
git fetch origin master:master | ||
git fetch origin ${{ github.event.pull_request.base.ref }}:${{ github.event.pull_request.base.ref }} | ||
./scripts/ensure-version-bump-and-changelog.sh | ||
env: | ||
HEAD_SHA: ${{ github.event.pull_request.head.sha }} | ||
|
||
PR_BASE: ${{ github.event.pull_request.base.ref }} | ||
|
||
wasm_tests: | ||
name: Run all WASM tests | ||
|
@@ -279,6 +280,15 @@ jobs: | |
cargo check --manifest-path "$toml"; | ||
done | ||
- uses: taiki-e/cache-cargo-install-action@v1 | ||
with: | ||
tool: [email protected] | ||
|
||
- name: Build webrtc-browser example | ||
run: | | ||
cd examples/browser-webrtc | ||
wasm-pack build --target web --out-dir static | ||
semver: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
Oops, something went wrong.