Skip to content

Commit

Permalink
rename CI step, document its purpose in a comment
Browse files Browse the repository at this point in the history
  • Loading branch information
9SMTM6 committed Oct 3, 2024
1 parent 86f32bb commit 49b652d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ jobs:
- name: Install npm deps
working-directory: ./test
run: npm ci
- name: Trigger rustup installation
# For some reason isntalling the rust toolchain via wasm-pack leads to CI failures.
# This check will read the top level rustup-toolchain.toml and install the required stuff.
- name: Trigger toolchain installation
working-directory: ./test
run: cargo check
- name: Run tests
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Trigger rustup installation
# For some reason isntalling the rust toolchain via wasm-pack leads to CI failures.
# This check will read the top level rustup-toolchain.toml and install the required stuff.
- name: Trigger toolchain installation
working-directory: ./test
run: cargo check
- name: Build demo
Expand Down

0 comments on commit 49b652d

Please sign in to comment.