This commit is contained in:
parent
801058bc10
commit
6411ca5c92
1 changed files with 18 additions and 0 deletions
|
@ -8,5 +8,23 @@ jobs:
|
||||||
my-job:
|
my-job:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
- name: Setup Rust
|
||||||
|
uses: actions-rs/toolchain@v1
|
||||||
|
with:
|
||||||
|
toolchain: nightly
|
||||||
|
override: true
|
||||||
|
components: rustfmt
|
||||||
|
|
||||||
|
- name: Add wasm32-unknown-unknown
|
||||||
|
run: rustup target add wasm32-unknown-unknown
|
||||||
|
|
||||||
|
- name: Add wasm32-unknown-unknown
|
||||||
|
run: cargo install cargo-leptos
|
||||||
|
|
||||||
|
- name: Install Node.js
|
||||||
|
uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: 19
|
||||||
|
|
||||||
- name: my-step
|
- name: my-step
|
||||||
run: echo "Hello World 2!"
|
run: echo "Hello World 2!"
|
Loading…
Reference in a new issue