Skip to content

chore(deps-dev): bump @typescript-eslint/parser in /vscode-extension #567

chore(deps-dev): bump @typescript-eslint/parser in /vscode-extension

chore(deps-dev): bump @typescript-eslint/parser in /vscode-extension #567

Workflow file for this run

---
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