Skip to content

Commit b8eb07a

Browse files
Add .github/workflows/copilot-setup-steps.yml
Co-authored-by: Madoshakalaka <44753941+Madoshakalaka@users.noreply.github.com>
1 parent 32ee007 commit b8eb07a

1 file changed

Lines changed: 38 additions & 0 deletions

File tree

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: "Copilot Setup Steps"
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
copilot-setup-steps:
8+
runs-on: ubuntu-latest
9+
permissions:
10+
contents: read
11+
12+
steps:
13+
- uses: actions/checkout@v6
14+
15+
- name: Setup MSRV toolchain with wasm target
16+
uses: dtolnay/rust-toolchain@master
17+
with:
18+
toolchain: 1.84.0
19+
targets: wasm32-unknown-unknown
20+
21+
- uses: Swatinem/rust-cache@v2
22+
with:
23+
shared-key: yew-packages
24+
25+
- name: Setup Trunk
26+
uses: jetli/trunk-action@v0.5.1
27+
with:
28+
version: "latest"
29+
30+
- name: Setup typos
31+
uses: crate-ci/typos@v1.44.0
32+
33+
- name: Install wasm-bindgen-cli
34+
shell: bash
35+
run: ./ci/install-wasm-bindgen-cli.sh
36+
37+
- name: Install cargo-make
38+
run: cargo install cargo-make --locked

0 commit comments

Comments
 (0)