Skip to content

Commit d78ef95

Browse files
committed
Merge remote-tracking branch 'origin/next' into next
2 parents 7485a5b + 4762ece commit d78ef95

File tree

7 files changed

+199
-223
lines changed

7 files changed

+199
-223
lines changed

.github/workflows/clippy.yml

+11-3
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,22 @@ jobs:
1717
fmt:
1818
runs-on: ubuntu-22.04
1919
steps:
20-
- uses: actions/checkout@v2
20+
- name: Checkout
21+
uses: actions/checkout@v3
22+
with:
23+
submodules: 'recursive'
24+
- name: Update submodule
25+
run: |
26+
git submodule update --remote
2127
- uses: actions-rs/toolchain@v1
2228
with:
2329
profile: minimal
2430
toolchain: nightly
31+
target: wasm32-unknown-unknown
2532
override: true
26-
- run: rustup component add rustfmt
33+
- uses: Swatinem/rust-cache@v2
34+
- name: Build
35+
run: cargo build --features=ssr,hydrate
2736
- uses: actions-rs/cargo@v1
2837
with:
2938
command: fmt
@@ -61,7 +70,6 @@ jobs:
6170
uses: actions/checkout@v3
6271
with:
6372
submodules: 'recursive'
64-
6573
- uses: actions-rs/toolchain@v1
6674
with:
6775
profile: minimal

0 commit comments

Comments
 (0)