chore(deps-dev): bump eslint from 8.57.0 to 9.18.0 in /vscode-extension #557
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: CI | |
on: | |
workflow_dispatch: | |
push: | |
jobs: | |
lint: | |
name: Lint the code. | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v4 | |
- name: Check code format | |
run: cargo fmt --check | |
- name: Lint the code | |
run: cargo clippy --all-targets --all-features | |
test: | |
name: Unit test the code. | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v4 | |
- name: Run unit tests | |
run: cargo test |