deps(npm): bump the js group across 3 directories with 6 updates #559
Workflow file for this run
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
name: win-gsmtc | |
on: | |
push: | |
branches: [master, main] | |
pull_request: | |
branches: [master, main] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build-and-lint: | |
name: Build, Lint, and Test | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: stable | |
- uses: Swatinem/rust-cache@v2 | |
- name: Build | |
run: cargo build -p win-gsmtc | |
- name: Clippy | |
run: cargo clippy -p win-gsmtc | |
- name: Test | |
run: cargo test -p win-gsmtc --doc |